diff --git a/centos_pkg_dirs b/centos_pkg_dirs index d3ab43e6c..29dc10ab9 100644 --- a/centos_pkg_dirs +++ b/centos_pkg_dirs @@ -40,7 +40,6 @@ base/net-snmp ldap/openldap networking/mellanox/mlx4-config networking/openvswitch -restapi-doc base/libevent security/wrs-ssl security/tss2 diff --git a/restapi-doc/centos/build_srpm b/restapi-doc/centos/build_srpm deleted file mode 100755 index 79662d42f..000000000 --- a/restapi-doc/centos/build_srpm +++ /dev/null @@ -1,252 +0,0 @@ -#!/bin/bash -# set -x - -source "$SRC_BASE/build-tools/spec-utils" -source "$SRC_BASE/build-tools/srpm-utils" - -CUR_DIR=`pwd` -BUILD_DIR="$RPMBUILD_BASE" - -if [ "x$DATA" == "x" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): Environment variable 'DATA' not defined." - exit 1 -fi - -srpm_source_build_data $DATA -if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): Failed to source build data from $DATA" - exit 1 -fi - -if [ "x$VERSION" == "x" ]; then - for SPEC in `find $SPECS_BASE -name '*.spec' | sort -V`; do - SPEC_PATH="$SPEC" - - VERSION_DERIVED=`spec_evaluate '%{version}' "$SPEC_PATH" 2>> /dev/null` - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): '%{version}' not found in '$PKG_BASE/$SPEC_PATH'" - VERSION_DERIVED="" - fi - - if [ "x$VERSION_DERIVED" != "x" ]; then - if [ "x$VERSION" == "x" ]; then - VERSION=$VERSION_DERIVED - else - if [ "x$SRC_DIR" != "x" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): multiple spec files found, can't set VERSION automatically" - exit 1 - fi - fi - fi - done - - if [ "x$VERSION" == "x" ]; then - if [ -f $SRC_DIR/PKG-INFO ]; then - VERSION=$(grep '^Version:' $SRC_DIR/PKG-INFO | awk -F ': ' '{print $2}' | sed -e 's/^[[:space:]]*//') - fi - fi - - if [ "x$VERSION" != "x" ]; then - echo "Derived VERSION=$VERSION" - else - echo "ERROR: restapi_build_srpm (${LINENO}): Failed to derive a good VERSION from SPEC file, and none provided." - exit 1 - fi -fi - -if [ "x$TAR_NAME" == "x" ]; then - for SPEC in `find $SPECS_BASE -name '*.spec' | sort -V`; do - SPEC_PATH="$SPEC" - - SERVICE=`spec_find_global service "$SPEC_PATH" 2>> /dev/null` - if [ $? -eq 0 ]; then - if [ "x$TAR_NAME" == "x" ]; then - TAR_NAME=$SERVICE - else - if [ "x$SRC_DIR" != "x" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): multiple spec files found, can't set TAR_NAME automatically" - exit 1 - fi - fi - else - NAME=`spec_find_tag Name "$SPEC_PATH" 2>> /dev/null` - if [ $? -eq 0 ]; then - if [ "x$TAR_NAME" == "x" ]; then - TAR_NAME=$NAME - else - if [ "x$SRC_DIR" != "x" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): multiple spec files found, can't set TAR_NAME automatically" - exit 1 - fi - fi - else - echo "WARNING: restapi_build_srpm (${LINENO}): 'Name' not found in '$PKG_BASE/$SPEC_PATH'" - NAME="" - fi - fi - done - - if [ "x$TAR_NAME" == "x" ]; then - if [ -f $SRC_DIR/PKG-INFO ]; then - TAR_NAME=$(grep '^Name:' $SRC_DIR/PKG-INFO | awk -F ': ' '{print $2}' | sed -e 's/^[[:space:]]*//') - fi - fi - - if [ "x$TAR_NAME" != "x" ]; then - echo "Derived TAR_NAME=$TAR_NAME" - else - echo "ERROR: restapi_build_srpm (${LINENO}): Failed to derive a good TAR_NAME from SPEC file, and none provided." - exit 1 - fi -fi - -if [ "x$TAR" == "x" ]; then - TAR="$TAR_NAME-$VERSION.tar.gz" -fi - -SOURCE_PATH="$BUILD_DIR/SOURCES" -TAR_PATH="$SOURCE_PATH/$TAR" -STAGING="" - -if [ "x$COPY_LIST_TO_TAR" != "x" ] || [ "x$EXCLUDE_LIST_FROM_TAR" != "x" ]; then - STAGING="$BUILD_DIR/staging" - mkdir -p $STAGING -fi - -mkdir -p "$BUILD_DIR/SRPMS" -mkdir -p "$SOURCE_PATH" - -if [ "x$SRC_DIR" == "x" -a "x$COPY_LIST" == "x" -a "$ALLOW_EMPTY_RPM" != "true" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): '$PWD/$DATA' failed to provide at least one of 'SRC_DIR' or 'COPY_LIST'" - exit 1 -fi - -if [ "x$SRC_DIR" != "x" ]; then - if [ ! -d "$SRC_DIR" ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): directory not found: '$SRC_DIR'" - exit 1 - fi -fi - -if [ "x$COPY_LIST" != "x" ]; then - echo "COPY_LIST: $COPY_LIST" - for p in $COPY_LIST; do - # echo "COPY_LIST: $p" - cp -L -u -r -v $p $SOURCE_PATH - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): COPY_LIST: file not found: '$p'" - exit 1 - fi - done -fi - -if [ "x$STAGING" != "x" ]; then - cp -L -u -r -v $SRC_DIR $STAGING - echo "COPY_LIST_TO_TAR: $COPY_LIST_TO_TAR" - for p in $COPY_LIST_TO_TAR; do - # echo "COPY_LIST_TO_TAR: $p" - cp -L -u -r -v $p $STAGING/$SRC_DIR - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): COPY_LIST_TO_TAR: file not found: '$p'" - exit 1 - fi - done - echo "EXCLUDE_LIST_FROM_TAR: $EXCLUDE_LIST_FROM_TAR" - for p in $EXCLUDE_LIST_FROM_TAR; do - # echo "EXCLUDE_LIST_FROM_TAR: $p" - rm -rf $STAGING/$SRC_DIR/$p - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): EXCLUDE_LIST_FROM_TAR: could not remove file: '$p'" - exit 1 - fi - done - -fi - -TRANSFORM=`echo "$SRC_DIR" | sed 's/^\./\\./' | sed 's:^/::'` - -if [ "x$STAGING" != "x" ]; then - pushd $STAGING -fi - -TAR_NEEDED=0 -if [ "x$SRC_DIR" != "x" ]; then - echo "SRC_DIR=$SRC_DIR" - if [ -f $TAR_PATH ]; then - n=`find . -cnewer $TAR_PATH -and ! -path './.git*' \ - -and ! -path './build/*' \ - -and ! -path './.pc/*' \ - -and ! -path './patches/*' \ - -and ! -path "./$DISTRO/*" \ - -and ! -path './pbr-*.egg/*' \ - | wc -l` - if [ $n -gt 0 ]; then - TAR_NEEDED=1 - fi - else - TAR_NEEDED=1 - fi -fi - -if [ $TAR_NEEDED -gt 0 ]; then - echo "Creating tar file: $TAR_PATH ..." - tar chzf $TAR_PATH $SRC_DIR --exclude '.git*' --exclude 'build' --exclude='.pc' --exclude='patches' --exclude="$SRC_DIR/$DISTRO" --exclude='pbr-*.egg' --transform "s,^$TRANSFORM,$TAR_NAME-$VERSION," - if [ $? -ne 0 ]; then - if [ "x$STAGING" != "x" ]; then - popd - fi - - echo "ERROR: restapi_build_srpm (${LINENO}): failed to create tar file, cmd: tar chzf $TAR_PATH $SRC_DIR --exclude '.git*' --exclude 'build' --exclude='.pc' --exclude='patches' --exclude="$SRC_DIR/$DISTRO" --exclude='pbr-*.egg' --transform \"s,^$TRANSFORM,$TAR_NAME-$VERSION,\"" - exit 1 - fi - echo "Created tar file: $TAR_PATH" -else - echo "Tar file not needed." -fi - -if [ "x$STAGING" != "x" ]; then - popd -fi - -for SPEC in `ls $BUILD_DIR/SPECS`; do - SPEC_PATH="$BUILD_DIR/SPECS/$SPEC" - RELEASE=`spec_find_tag Release "$SPEC_PATH" 2>> /dev/null` - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): 'Release' not found in '$SPEC_PATH'" - fi - NAME=`spec_find_tag Name "$SPEC_PATH" 2>> /dev/null` - if [ $? -ne 0 ]; then - echo "ERROR: restapi_build_srpm (${LINENO}): 'Name' not found in '$SPEC_PATH'" - fi - SRPM="$NAME-$VERSION-$RELEASE.src.rpm" - SRPM_PATH="$BUILD_DIR/SRPMS/$SRPM" - - spec_validate_tis_release $SPEC_PATH - if [ $? -ne 0 ]; then - echo "TIS Validation of $SPEC_PATH failed" - exit 1 - fi - - BUILD_NEEDED=0 - if [ -f $SRPM_PATH ]; then - n=`find . -cnewer $SRPM_PATH | wc -l` - if [ $n -gt 0 ]; then - BUILD_NEEDED=1 - fi - else - BUILD_NEEDED=1 - fi - - if [ $BUILD_NEEDED -gt 0 ]; then - echo "SPEC file: $SPEC_PATH" - echo "SRPM build directory: $BUILD_DIR" - echo "TIS_PATCH_VER: $TIS_PATCH_VER" - - sed -i -e "1 i%define _tis_build_type $BUILD_TYPE" $SPEC_PATH - sed -i -e "1 i%define tis_patch_ver $TIS_PATCH_VER" $SPEC_PATH - rpmbuild -bs $SPEC_PATH --define="%_topdir $BUILD_DIR" --undefine=dist --define="_tis_dist .tis" - else - echo "SRPM build not needed" - fi -done - diff --git a/restapi-doc/centos/build_srpm.data b/restapi-doc/centos/build_srpm.data deleted file mode 100644 index e74282c78..000000000 --- a/restapi-doc/centos/build_srpm.data +++ /dev/null @@ -1,7 +0,0 @@ -SRC_DIR=restapi-doc -COPY_LIST="$SRC_DIR/* \ - $CGCS_BASE/downloads/mvn.repo.tgz \ - " - -TIS_PATCH_VER=27 -BUILD_IS_SLOW=3 diff --git a/restapi-doc/centos/restapi-doc.spec b/restapi-doc/centos/restapi-doc.spec deleted file mode 100644 index c4d18f8f2..000000000 --- a/restapi-doc/centos/restapi-doc.spec +++ /dev/null @@ -1,32 +0,0 @@ -Summary: RestAPI-Doc -Name: restapi-doc -Version: 1.9.1 -Release: %{tis_patch_ver}%{?_tis_dist} -License: Apache-2.0 -Group: devel -Packager: Wind River -URL: unknown -BuildRequires: git maven - -Source0: %{name}-%{version}.tar.gz -Source1: mvn.repo.tgz - -%define cgcs_sdk_deploy_dir /opt/deploy/cgcs_sdk -%define debug_package %{nil} - -%description -RestAPI-doc files - -%prep -%setup -cp %{SOURCE1} %{_builddir}/%{name}-%{version} - -%build -make -j"%(nproc)" - -%install -install -D -m 644 wrs-%{name}-%{version}.tgz %{buildroot}%{cgcs_sdk_deploy_dir}/wrs-%{name}-%{version}.tgz - -%files -%{cgcs_sdk_deploy_dir}/wrs-%{name}-%{version}.tgz - diff --git a/restapi-doc/restapi-doc/.gitignore b/restapi-doc/restapi-doc/.gitignore deleted file mode 100644 index 153aca65b..000000000 --- a/restapi-doc/restapi-doc/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -.DS_Store -*.xpr -*.tgz - -# Build results -publish-docs/ -target/ -/build-*.log.gz -/generated - -# Packages -*.egg -*.egg-info - -# Testenvironment -.tox - -# Editors -*~ -.*.swp -.bak diff --git a/restapi-doc/restapi-doc/LICENSE b/restapi-doc/restapi-doc/LICENSE deleted file mode 100644 index d64569567..000000000 --- a/restapi-doc/restapi-doc/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/restapi-doc/restapi-doc/Makefile b/restapi-doc/restapi-doc/Makefile deleted file mode 100644 index a8997f0af..000000000 --- a/restapi-doc/restapi-doc/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# increment this every release -API_VERSION := "1.9.1" - -build: - @git status > /dev/null ; \ - if [ $$? -ne 0 ] ; then \ - echo CREATING DUMMY GIT ; \ - git init ; \ - fi - - if [ ! -e mvn.repo.tgz ]; then \ - echo "Maven Cache Not Found!" ; \ - exit 1 ; \ - fi - - mkdir -p mvn.repo - tar -xvzf ./mvn.repo.tgz -C ./mvn.repo/ - mvn clean generate-sources -o -Dmaven.repo.local=./mvn.repo/ - - mkdir -p target/wrs-restapi-doc-$(API_VERSION)/ - cp rest-api-usage-example.pdf target/wrs-restapi-doc-$(API_VERSION)/ - cp -R api-ref-guides/target/docbkx/pdf target/wrs-restapi-doc-$(API_VERSION)/ - cp -R api-ref/target/docbkx/html target/wrs-restapi-doc-$(API_VERSION)/ - cd target; tar -czvf ../wrs-restapi-doc-$(API_VERSION).tgz wrs-restapi-doc-$(API_VERSION) - @echo 'wrs-restapi-doc-$(API_VERSION).tgz' is ready - -clean: - mvn clean -o -Dmaven.repo.local=./mvn.repo/ - rm -f wrs-restapi-doc-*.tgz - rm -rf target - - rm -rf mvn.repo diff --git a/restapi-doc/restapi-doc/Makefile.cache b/restapi-doc/restapi-doc/Makefile.cache deleted file mode 100644 index e487a35f9..000000000 --- a/restapi-doc/restapi-doc/Makefile.cache +++ /dev/null @@ -1,26 +0,0 @@ -# increment this every release -API_VERSION := "1.6.0" - -build: - @git status > /dev/null ; \ - if [ $$? -ne 0 ] ; then \ - echo CREATING DUMMY GIT ; \ - git init ; \ - fi - - mvn clean generate-sources dependency:go-offline -Dmaven.repo.local=./mvn.repo/ - cd mvn.repo && tar -czvf ../mvn.repo.tgz . && cd .. - - mkdir -p target/wrs-restapi-doc-$(API_VERSION)/ - cp rest-api-usage-example.pdf target/wrs-restapi-doc-$(API_VERSION)/ - cp -R api-ref-guides/target/docbkx/pdf target/wrs-restapi-doc-$(API_VERSION)/ - cp -R api-ref/target/docbkx/html target/wrs-restapi-doc-$(API_VERSION)/ - cd target; tar -czvf ../wrs-restapi-doc-$(API_VERSION).tgz wrs-restapi-doc-$(API_VERSION) - @echo 'wrs-restapi-doc-$(API_VERSION).tgz' is ready - -clean: - mvn clean -o -Dmaven.repo.local=./mvn.repo/ - rm -f wrs-restapi-doc-*.tgz - rm -rf target - - rm -rf mvn.repo diff --git a/restapi-doc/restapi-doc/README.mvn_cache b/restapi-doc/restapi-doc/README.mvn_cache deleted file mode 100644 index 1e2e235f9..000000000 --- a/restapi-doc/restapi-doc/README.mvn_cache +++ /dev/null @@ -1,17 +0,0 @@ -Steps to produce mvn.repo.tgz [Maven cache] -=================== - - -cd $MY_REPO/stx/stx-integ/restapi-doc/restapi-doc -cp Makefile Makefile.backup -cp Makefile.mvn_cache Makefile -build-srpms restapi-doc -mock -r $MY_BUILD_CFG_STD "FILE_NAME_TO_THE_BUILT_SRPM" -mock -r $MY_BUILD_CFG_STD --copyout /builddir/build/BUILD/restapi-doc-1.9.1/mvn.repo.tgz ~/ -cp ~/mvn.repo.tgz $MY_REPO/stx/downloads/ - -# only the first time -# ln -s ../../../downloads/mvn.repo.tgz mvn.repo.tgz - -cp Makefile.backup Makefile - diff --git a/restapi-doc/restapi-doc/api-ref-guides/pom.xml b/restapi-doc/restapi-doc/api-ref-guides/pom.xml deleted file mode 100644 index f2669c716..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/pom.xml +++ /dev/null @@ -1,192 +0,0 @@ - - - - org.openstack.docs - parent-pom - 1.0.0-SNAPSHOT - ../pom.xml - - 4.0.0 - titanium-api-ref-guides - jar - Titanium REST API Reference Guide - - - local - 0 - - - - - - - src - - - locale - - - - - com.rackspace.cloud.api - clouddocs-maven-plugin - - - - - os-api-ref - - generate-pdf - - generate-sources - - bk-api-ref.xml - api-ref - - - - os-api-ref-compute-v2-cgcs-ext - - generate-pdf - - generate-sources - - bk-api-ref-compute-v2-cgcs-ext.xml - api-ref-compute-v2-cgcs-ext - - - - os-api-ref-networking-v2-cgcs-ext - - generate-pdf - - generate-sources - - bk-api-ref-networking-v2-cgcs-ext.xml - api-ref-networking-v2-cgcs-ext - - - - os-api-ref-image-v2-cgcs-ext - - generate-pdf - - generate-sources - - bk-api-ref-image-v2-cgcs-ext.xml - api-ref-image-v2-cgcs-ext - - - - os-api-ref-sysinv-v1 - - generate-pdf - - generate-sources - - bk-api-ref-sysinv-v1.xml - api-ref-sysinv-v1 - - - - os-api-ref-dcmanager-v1 - - generate-pdf - - generate-sources - - bk-api-ref-dcmanager-v1.xml - api-ref-dcmanager-v1 - - - - os-api-ref-patching-v1 - - generate-pdf - - generate-sources - - bk-api-ref-patching-v1.xml - api-ref-patching-v1 - - - - os-api-ref-blockstorage-v2 - - generate-pdf - - generate-sources - - bk-api-ref-blockstorage-v2-cgcs-ext.xml - bk-api-ref-blockstorage-v2 - - - - os-api-ref-nfv-vim-v1 - - generate-pdf - - generate-sources - - bk-api-ref-nfv-vim-v1.xml - api-ref-nfv-vim-v1 - - - - os-api-ref-smapi-v1 - - generate-pdf - - generate-sources - - bk-api-ref-smapi-v1.xml - api-ref-smapi-v1 - - - - os-api-ref-fm-v1 - - generate-pdf - - generate-sources - - bk-api-ref-fm-v1.xml - api-ref-fm-v1 - - - - - api-ref-guides - appendix toc,title - article/appendix nop - article toc,title - book toc,title - part toc,title - qandadiv toc - qandaset to - reference toc,title - set toc,title - true - src - openstack - 1 - true - false - external - 0 - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-blockstorage-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-blockstorage-v2-cgcs-ext.xml deleted file mode 100644 index 40ed0ac7f..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-blockstorage-v2-cgcs-ext.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - OpenStack Block Storage API v2 Titanium Extensions - API Reference - - - - - - - Wind River - - - - 2015 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-compute-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-compute-v2-cgcs-ext.xml deleted file mode 100644 index 0c1a5129b..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-compute-v2-cgcs-ext.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - OpenStack Compute API v2 Titanium extensions - API Reference - - - - - - - Wind River - - - - 2014 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-dcmanager-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-dcmanager-v1.xml deleted file mode 100644 index 9c738c0cc..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-dcmanager-v1.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Titanium Dcmanager API v1 - API Reference - - - - - - - Wind River - - - - 2018 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-fm-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-fm-v1.xml deleted file mode 100644 index 24ee51992..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-fm-v1.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Titanium Fault Management API v1 - API Reference - - - - - - - Wind River - - - - 2018 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-image-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-image-v2-cgcs-ext.xml deleted file mode 100644 index 6bf62e1ed..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-image-v2-cgcs-ext.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - OpenStack Image API v2 cgcs extensions - API Reference - - - - - - - Wind River - - - - 2016 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-networking-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-networking-v2-cgcs-ext.xml deleted file mode 100644 index 17c337e95..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-networking-v2-cgcs-ext.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - OpenStack Networking API v2 Titanium extensions - API Reference - - - - - - - Wind River - - - - 2014 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-nfv-vim-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-nfv-vim-v1.xml deleted file mode 100644 index c6cb7ff22..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-nfv-vim-v1.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Titanium NFV VIM API v1 - API Reference - - - - - - - Wind River - - - - 2016 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-patching-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-patching-v1.xml deleted file mode 100755 index d8f304693..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-patching-v1.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Titanium Patching API v1 - API Reference - - - - - - - Wind River - - - - 2014 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-smapi-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-smapi-v1.xml deleted file mode 100644 index a3ce010fe..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-smapi-v1.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Service Management API v1 - API Reference - - - - - - - Wind River - - - - 2018 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-sysinv-v1.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-sysinv-v1.xml deleted file mode 100644 index b6882b29b..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref-sysinv-v1.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - -GET'> -PUT'> -POST'> -DELETE'> -]> - - - Titanium SysInv API v1 - API Reference - - - - - - - Wind River - - - - 2014 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref.xml b/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref.xml deleted file mode 100644 index 299f16579..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/bk-api-ref.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - Titanium Cloud REST API - Titanium Cloud REST API - - - - - - - Wind River - - - - 2014-2016 - Wind River - - Titanium Cloud - - - - Copyright details are filled in by the - template. - - - - - - - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref-guides/src/preface.xml b/restapi-doc/restapi-doc/api-ref-guides/src/preface.xml deleted file mode 100644 index 50736f031..000000000 --- a/restapi-doc/restapi-doc/api-ref-guides/src/preface.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - -]> - - Preface - Use the Titanium System Inventory APIs and the Titanium - extensions to OpenStack APIs to manager your Titnaium Server - cloud. - - After you authenticate through the Identity API, - you can use the other APIs and extensions to manage controller/compute/storage - nodes, launch server instances, create images, assign metadata to instances and - images, create containers and objects, and complete other - actions in your Titanium Cloud cloud. To get started with the APIs, - see the OpenStack API Quick Start. -   - diff --git a/restapi-doc/restapi-doc/api-ref/.htaccess b/restapi-doc/restapi-doc/api-ref/.htaccess deleted file mode 100644 index e69de29bb..000000000 diff --git a/restapi-doc/restapi-doc/api-ref/locale/api-ref.pot b/restapi-doc/restapi-doc/api-ref/locale/api-ref.pot deleted file mode 100644 index 3ab4f967d..000000000 --- a/restapi-doc/restapi-doc/api-ref/locale/api-ref.pot +++ /dev/null @@ -1,1796 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-08-13 06:06+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ./api-ref/src/docbkx/api-ref-compute-v2-ext.xml:11(title) -msgid "OpenStack Compute API v2 extensions" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-compute-v2-ext.xml:13(year) ./api-ref/src/docbkx/api-ref-identity-v3.xml:13(year) ./api-ref/src/docbkx/api-ref-blockstorage-v1.xml:13(year) ./api-ref/src/docbkx/api-ref-objectstorage-v1.xml:13(year) ./api-ref/src/docbkx/api-ref.xml:13(year) ./api-ref/src/docbkx/api-ref-image-v2.xml:13(year) ./api-ref/src/docbkx/api-ref-orchestration-v1.xml:13(year) ./api-ref/src/docbkx/api-ref-networking-v2.xml:13(year) ./api-ref/src/docbkx/api-ref-compute-v2.xml:13(year) ./api-ref/src/docbkx/api-ref-image-v1.xml:13(year) ./api-ref/src/docbkx/api-ref-blockstorage-v2.xml:13(year) ./api-ref/src/docbkx/api-ref-identity-v2.xml:13(year) ./api-ref/src/docbkx/api-ref-databases-v1.xml:13(year) ./api-ref/src/docbkx/api-ref-compute-v3.xml:13(year) -msgid "2010-2014" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:7(title) -msgid "Identity admin API v2.0 (STABLE)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:8(para) -msgid "Get an authentication token that permits access to the Compute API." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:10(title) -msgid "Versions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:18(title) ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:8(title) ./api-ref/src/docbkx/ch_compute-v2.xml:38(title) ./api-ref/src/docbkx/ch_identity-v2.xml:27(title) -msgid "Extensions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:29(title) ./api-ref/src/docbkx/ch_identity-v2.xml:40(title) ./api-ref/src/docbkx/ch_identity-v3.xml:24(title) -msgid "Tokens" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:41(title) ./api-ref/src/docbkx/ch_identity-v3.xml:167(title) -msgid "Users" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml:62(title) -msgid "Tenants" -msgstr "" - -#: ./api-ref/src/docbkx/preface.xml:9(title) -msgid "OpenStack API Complete Reference" -msgstr "" - -#: ./api-ref/src/docbkx/preface.xml:10(para) -msgid "Use the OpenStack APIs and extensions to launch server instances, create images, assign metadata to instances and images, create containers and objects, and complete other actions in your OpenStack cloud." -msgstr "" - -#: ./api-ref/src/docbkx/preface.xml:14(para) -msgid "The API status reflects the state of the endpoint on the service. CURRENT is a stable version that is up-to-date, recent, and might receive future versions. This endpoint should be prioritized over all others. SUPPORTED is a stable version that is available on the server. However, it is not likely the most recent available and might not be updated or might be deprecated at some time in the future. DEPRECATED is a stable version that is still available but is being deprecated and might be removed in the future. EXPERIMENTAL is not a stable version. This version is under development or contains features that are otherwise subject to change. For more information about API status values and version information, see Version Discovery." -msgstr "" - -#: ./api-ref/src/docbkx/preface.xml:32(para) -msgid "You must install the packages for each API separately. You can use the APIs and extensions after you authenticate through the Identity API:" -msgstr "" - -#: ./api-ref/src/docbkx/preface.xml:41(para) -msgid "To get started with the APIs, see the OpenStack API Quick Start." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:10(title) ./api-ref/src/docbkx/itemizedlist-service-list.xml:48(link) -msgid "Image Service API v1 (SUPPORTED)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:11(para) -msgid "Load images for use at launch time by the Compute API. Also, assign metadata to images." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:13(para) -msgid "Some cloud implementations do not expose this API and offer pretested images only." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:15(para) ./api-ref/src/docbkx/ch_images-v2.xml:11(para) -msgid "Cloud providers can configure property protections that prevent non-administrative users from updating and deleting protected properties. For more information, see Image property protection in the OpenStack Cloud Administrator Guide." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:23(title) ./api-ref/src/docbkx/ch_compute-v2.xml:17(title) ./api-ref/src/docbkx/ch_netconn-v2.xml:20(title) ./api-ref/src/docbkx/ch_identity-v2.xml:14(title) ./api-ref/src/docbkx/ch_databases-v1.xml:11(title) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:14(title) ./api-ref/src/docbkx/ch_orchestration-v1.xml:13(title) ./api-ref/src/docbkx/ch_images-v2.xml:19(title) ./api-ref/src/docbkx/ch_compute-v3.xml:21(title) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:45(title) ./api-ref/src/docbkx/ch_identity-v3.xml:11(title) -msgid "API versions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:37(title) ./api-ref/src/docbkx/ch_compute-v2.xml:230(title) ./api-ref/src/docbkx/ch_images-v2.xml:28(title) -msgid "Images" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:57(title) ./api-ref/src/docbkx/ch_images-v2.xml:69(title) -msgid "Members" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v1.xml:71(title) -msgid "Shared images" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-identity-v3.xml:11(title) -msgid "OpenStack Identity API v3 and extensions" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-blockstorage-v1.xml:11(title) -msgid "OpenStack Block Storage API v1" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:6(title) -msgid "Networking API v2.0 extensions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:9(para) -msgid "List available Networking API v2.0 extensions and show details for a specified extension." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:21(title) -msgid "Quotas extension (quotas)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:22(para) -msgid "List, show information for, update, and reset quotas." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:33(title) -msgid "Networks provider extended attributes (networks)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:34(para) -msgid "List, create, show information for, update, and delete networks." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:48(title) -msgid "Networks multiple provider extension (networks)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:49(para) -msgid "Enables administrative users to define multiple physical bindings for an OpenStack Networking network and list or show details for networks with multiple physical bindings." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:52(para) -msgid "You cannot update any provider attributes. If you try to do so, an error occurs." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:54(para) -msgid "To delete a network with multiple physical bindings, issue a normal delete network request." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:56(para) -msgid "To define multiple physical bindings for a network, include a segments list in the request body of a POST /v2.0/networks request. Each element in the segments list has the same structure as the provider network attributes. These attributes are provider:network_type, provider:physical_network, and provider:segmentation_id. The validation rules for these attributes are the same as for the Networks provider extended attributes. You cannot use both extensions at the same time." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:67(para) -msgid "The NSX and ML2 plug-ins support this extension. With the ML2 plug-in, you can specify multiple VLANs for a specified network, a VXLAN tunnel ID, and a VLAN." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:73(title) -msgid "Ports binding extended attributes (ports)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:74(para) -msgid "List, create, show information for, and update ports." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:87(title) -msgid "Security groups and rules (security-groups)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:88(para) -msgid "List, create, show information for, and delete security groups and security group rules." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:112(title) -msgid "Layer-3 networking" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:113(para) -msgid "Route packets between subnets, forward packets from internal networks to external ones, and access instances from external networks through floating IPs." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:115(para) -msgid "This extension introduces these resources:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:118(para) -msgid "router. A logical entity for forwarding packets across internal subnets and NATting them on external networks through an appropriate external gateway." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:123(para) -msgid "floatingip. An external IP address that is mapped to a port that is attached to an internal network." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:131(title) -msgid "Metering labels and rules" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:132(para) -msgid "Create, modify, and delete OpenStack Layer3 Metering labels and rules." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:137(title) -msgid "Load-Balancer-as-a-Service (LBaaS)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:138(para) -msgid "The LBaaS extension enables OpenStack tenants to load-balance their VM traffic. The extension enables you to load-balance client traffic from one network to application services, such as VMs, on the same or a different network. You can load-balance several protocols, such as TCP and HTTP and monitor the health of application services. The LBaaS extension supports session persistence." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:144(caption) -msgid "Load balancer statuses" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:150(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:45(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:147(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:266(th) -msgid "Status" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:151(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:46(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:148(th) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:267(th) -msgid "Description" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:152(th) -msgid "Operational" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:157(td) -msgid "DEFERRED" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:158(td) -msgid "An entity was created but is not yet linked to a load balancer." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:159(td) ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:164(td) ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:174(td) ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:184(td) -msgid "No" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:162(td) -msgid "PENDING_CREATE" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:163(td) -msgid "An entity is being created." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:167(td) -msgid "PENDING_UPDATE" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:168(td) -msgid "An entity was updated. It remains in an operational state." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:169(td) ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:179(td) -msgid "Yes" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:172(td) -msgid "PENDING_DELETE" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:173(td) -msgid "An entity is in the process of being deleted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:177(td) -msgid "ACTIVE" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:178(td) -msgid "An entity is in a normal operational state." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:182(td) -msgid "INACTIVE" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:183(td) -msgid "Applies to members that fail health checks." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:187(td) -msgid "ERROR" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:188(td) -msgid "Something has gone wrong." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:189(td) -msgid "This might be in either an operational or non-operational state." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml:193(para) -msgid "Use this extension to create and manage load balancers, listeners, pools, members, and health monitors." -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-objectstorage-v1.xml:11(title) -msgid "OpenStack Object Storage API v1" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:12(link) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:10(title) -msgid "Block Storage API v2 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:16(link) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:10(title) -msgid "Block Storage API v1 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:20(link) ./api-ref/src/docbkx/ch_compute-v2.xml:9(title) -msgid "Compute API v2 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:24(link) ./api-ref/src/docbkx/ch_compute-v2-ext.xml:13(title) -msgid "Compute API v2 extensions (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:28(link) ./api-ref/src/docbkx/ch_compute-v3.xml:14(title) -msgid "Compute API v3 (EXPERIMENTAL)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:32(link) -msgid "Database Service API v1.0 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:36(link) ./api-ref/src/docbkx/ch_identity-v3.xml:7(title) -msgid "Identity API v3 (STABLE)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:40(link) ./api-ref/src/docbkx/ch_identity-v2.xml:10(title) -msgid "Identity API v2.0 (STABLE)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:44(link) ./api-ref/src/docbkx/ch_images-v2.xml:9(title) -msgid "Image Service API v2 (SUPPORTED)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:52(link) ./api-ref/src/docbkx/ch_netconn-v2.xml:9(title) -msgid "Networking API v2.0 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:56(link) ./api-ref/src/docbkx/ch_objectstorage-v1.xml:9(title) -msgid "Object Storage API v1 (SUPPORTED)" -msgstr "" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml:61(link) ./api-ref/src/docbkx/ch_orchestration-v1.xml:9(title) -msgid "Orchestration API v1 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref.xml:11(title) -msgid "OpenStack API Reference" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:14(para) -msgid "Extensions add features, MIME types, actions, states, headers, parameters, and resources to the core Compute API without requiring a version change." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:17(para) ./api-ref/src/docbkx/ch_compute-v2.xml:13(para) -msgid "XML support in requests and responses has been deprecated for the Compute API v2." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:20(title) -msgid "Server admin actions (action)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:21(para) -msgid "Administrator only. Perform actions on a server. Specify the action in the request body." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:28(title) -msgid "Server diagnostics (diagnostics)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:29(para) -msgid "Get the usage data for a server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:35(title) -msgid "Flavor access (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:36(para) -msgid "Create and get details for private flavors. Also, list, add, and remove tenants' access to private flavors." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:43(title) -msgid "Flavors with FlavorDisabled attribute (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:44(para) -msgid "Get details for a flavor, and list details for available flavors. Includes the OS-FLV-DISABLED:disabled extended attribute." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:53(title) -msgid "Flavor extra-specs (os-extra-specs)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:54(para) -msgid "List, create, and update the extra-specs or keys for a flavor." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:61(title) -msgid "Flavors with rxtx_factor extended attribute (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:63(para) -msgid "Create, get details for, and list details for flavors. Includes the rxtx_factor extended attribute, related to configured bandwidth cap values." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:72(title) ./api-ref/src/docbkx/ch_compute-v3.xml:158(title) -msgid "Flavors with extended attributes (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:73(para) -msgid "Create, get details for, and list details for flavors. Includes the rxtx_factor, OS-FLV-EXT-DATA:ephemeral, and swap extended attributes." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:82(title) -msgid "Flavors create or delete (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:83(para) -msgid "Create or delete flavors." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:89(title) -msgid "Images with size attribute (images)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:90(para) -msgid "List details for available images or get details for a specified image. Includes the OS-EXT-IMG-SIZE:size extended attribute, which shows the image size." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:99(title) -msgid "Limits with project usage (limits)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:100(para) -msgid "Extend limits to show the project usage. Show information such as RAM or instance quotas usage." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:107(title) -msgid "Limits with project usage for administrators (limits)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:109(para) -msgid "Extend limits to enable administrators to show the project usage for a specified customer project ID. Show information such as RAM or instance quotas usage." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:117(title) ./api-ref/src/docbkx/ch_compute-v3.xml:43(title) -msgid "Guest agents (os-agents)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:118(para) -msgid "Create, update, and delete guest agents. Use guest agents to access files on the disk, configure networking, or run other applications or scripts in the guest while it runs. This hypervisor-specific extension is not currently enabled for KVM. Use of guest agents is possible only if the underlying service provider uses the Xen driver." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:130(title) ./api-ref/src/docbkx/ch_compute-v3.xml:55(title) -msgid "Host aggregates (os-aggregates)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:131(para) -msgid "Create and manage host aggregates. An aggregate assigns metadata to groups of compute nodes. Aggregates are only visible to the cloud provider." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:139(title) -msgid "Attach interfaces (os-interface)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:140(para) -msgid "Create, list, get details for, and delete port interfaces." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:147(title) ./api-ref/src/docbkx/ch_compute-v3.xml:73(title) -msgid "Root certificates (os-certificates)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:148(para) -msgid "Create and show details for a root certificate." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:154(title) -msgid "Cloudpipe (os-cloudpipe)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:155(para) -msgid "Manage virtual VPNs for projects." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:161(title) -msgid "Server console output (os-console-output)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:162(para) -msgid "Get console output for a server instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:168(title) -msgid "Server console (os-consoles)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:169(para) -msgid "Get a console for a server instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:175(title) -msgid "Coverage reports (os-coverage)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:181(title) ./api-ref/src/docbkx/ch_compute-v3.xml:88(title) -msgid "Server deferred delete (os-deferred-delete)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:182(para) -msgid "Force-delete a server or restore a deleted server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:189(title) -msgid "Fixed IPs (os-fixed-ips)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:190(para) -msgid "Show data for a specified fixed IP, such as host name, CIDR, and address. Also, reserve or free a fixed IP." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:198(title) -msgid "Floating IP DNS records (os-floating-ip-dns)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:199(para) -msgid "Manage DNS records associated with IP addresses allocated by the floating IPs extension. Requests are dispatched to a DNS driver selected at startup." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:207(title) -msgid "Floating IP pools (os-floating-ip-pools)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:208(para) -msgid "Manage groups of floating IPs." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:214(title) -msgid "Floating IPs (os-floating-ips)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:215(para) -msgid "Assign and allocate floating IP addresses to instances that run in an OpenStack cloud." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:222(title) -msgid "Floating IPs bulk (os-floating-ips-bulk)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:223(para) -msgid "Bulk-create, delete, and list floating IPs. By default, the pool is named nova. Use the os-floating-ip-pools extension to view available pools." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:232(title) ./api-ref/src/docbkx/ch_compute-v3.xml:165(title) -msgid "Hosts (os-hosts)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:233(para) -msgid "Manage physical hosts." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:239(title) ./api-ref/src/docbkx/ch_compute-v3.xml:172(title) -msgid "Hypervisors (os-hypervisors)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:240(para) -msgid "Display extra statistical information from the machine that hosts the hypervisor through the API for the hypervisor (XenAPI or KVM/libvirt)." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:267(title) -msgid "Server actions (os-instance-actions)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:268(para) -msgid "List available actions for a specified server. Administrators can get details for a specified action for a specified server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:276(title) -msgid "Keypairs (os-keypairs)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:277(para) -msgid "Generate, import, and delete SSH keys." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:283(title) ./api-ref/src/docbkx/ch_compute-v3.xml:205(title) -msgid "Migrations (os-migrations)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:284(para) -msgid "Administrators only. Fetch in-progress migrations for a region or a specified cell in a region." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:291(title) -msgid "Networks (os-networks)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:292(para) -msgid "Show network information for or delete networks. Also, disassociate a network from a project if you use vlan mode." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:300(title) ./api-ref/src/docbkx/ch_compute-v3.xml:226(title) -msgid "Quota sets (os-quota-sets)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:301(para) -msgid "Administrators only, depending on policy settings. View quotas for a tenant and view and update default quotas." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:309(title) -msgid "Rules for default security group (os-security-group-default-rules)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:311(para) -msgid "List, show information for, and create default security group rules." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:318(title) -msgid "Security groups (os-security-groups)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:319(para) -msgid "List, show information for, create, and delete security groups." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:326(title) -msgid "Server groups (os-server-groups)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:327(para) -msgid "List, show information for, create, and delete server groups." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:343(title) -msgid "Server password (os-server-password)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:344(para) -msgid "Get and reset the encrypted administrative password set through the metadata service." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:351(title) -msgid "Server shelve (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:352(para) -msgid "Shelve running servers, restore shelved servers, and remove shelved servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:354(para) -msgid "Shelving is useful when you have an instance that you are not using but would like retain in your list of servers. For example, you can stop an instance at the end of a work week and resume work at the start of the next week. Use the shelve action to shelve a server. All associated data and resources are kept; however, anything still in memory is not retained. You can restore a shelved instance by using the unshelve action. If a shelved instance is no longer needed, you can remove it by using the shelveOffload action." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:370(title) -msgid "Server start and stop (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:371(para) -msgid "Start a stopped server or stop a running server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:377(title) -msgid "Manage services (os-services)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:378(para) -msgid "List, enable, and disable Compute services in all hosts." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:385(title) ./api-ref/src/docbkx/ch_compute-v3.xml:249(title) -msgid "Usage reports (os-simple-tenant-usage)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:386(para) -msgid "Report usage statistics on compute and storage resources." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:393(title) -msgid "Virtual interfaces (os-virtual-interfaces)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:394(para) -msgid "List the virtual interfaces for a specified server instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:401(title) -msgid "Volume extension (os-volumes, os-snapshots)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:402(para) -msgid "Manage volumes and snapshots for use with the Compute API." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:409(title) -msgid "Volume attachments (os-volume_attachments)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:410(para) -msgid "Attach volumes created through the volume API to server instances. Also, list volume attachments for a server instance, get volume details for a volume attachment, and delete a volume attachment." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:419(title) -msgid "Servers with block device mapping format (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:421(para) -msgid "Create a server with a block device mapping." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:427(title) -msgid "Server OS-EXT-IPS-MAC:mac_addr extended attribute (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:429(para) -msgid "Add OS-EXT-IPS-MAC:mac_addr extended attribute when you create, show information for, or list servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:436(title) -msgid "Configuration drive (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:437(para) -msgid "Extend servers and images with a configuration drive." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:444(title) -msgid "Servers with extended availability zones (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:446(para) -msgid "Show the instance availability zone for compute nodes (nova-compute). Internal services appear in their own internal availability zone." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:455(title) -msgid "Servers and images with disk config (servers, images)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:457(para) -msgid "Extend servers with the diskConfig attribute." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:463(title) -msgid "Server IP type (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:464(para) -msgid "Show the type of the IP addresses assigned to an instance. Type is either fixed or floating." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:471(title) -msgid "Server extended attributes (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:472(para) -msgid "Show metadata for servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:478(title) -msgid "Server extended status (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:479(para) -msgid "Show extended status information, vm_state, task_state, and power_state, in detailed server responses." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:486(title) -msgid "Servers multiple create (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:487(para) -msgid "Create one or more servers with an optional reservation ID. The request and response examples show how to create multiple servers with or without a reservation ID." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:495(title) -msgid "Server rescue and unrescue (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:496(para) -msgid "Put a server into rescue mode or unrescue a server in rescue mode." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:503(title) -msgid "Servers with scheduler hints (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml:504(para) -msgid "Create a server with scheduler hints." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:10(para) -msgid "Launch virtual machines from images or images stored on persistent volumes. API v1.1 is identical to API v2." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:18(para) -msgid "List information for all API versions and show details about API v2." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:29(title) -msgid "Limits" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:30(para) -msgid "Get rate and absolute limits." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:39(para) -msgid "List available Compute API v2 extensions and show details for a specified extension." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:51(title) -msgid "Servers" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:52(para) -msgid "List, create, get details for, update, and delete servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:55(emphasis) -msgid "Passwords" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:56(para) -msgid "When you create a server, you can specify a password through the optional adminPass attribute. The specified password must meet the complexity requirements set by your OpenStack Compute provider. The server might enter an ERROR state if the complexity requirements are not met. In this case, a client might issue a change password action to reset the server password." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:62(para) -msgid "If you do not specify a password, a randomly generated password is assigned and returned in the response object. This password is guaranteed to meet the security requirements set by the compute provider. For security reasons, the password is not returned in subsequent calls." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:70(emphasis) ./api-ref/src/docbkx/ch_compute-v2.xml:172(title) -msgid "Server metadata" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:71(para) -msgid "You can specify custom server metadata at server launch time. The maximum size for each metadata key-value pair is 255 bytes. The maximum number of key-value pairs that can be supplied per server is determined by the compute provider. You can query this value through the maxServerMeta absolute limit." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:80(emphasis) -msgid "Server networks" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:81(para) -msgid "You can specify networks to which the server connects at launch time. You can specify one or more networks. Users can also specify a specific port on the network or the fixed IP address to assign to the server interface." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:85(para) -msgid "You can use both IPv4 and IPv6 addresses as access addresses and you can assign both addresses simultaneously. You can update access addresses after you create a server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:93(emphasis) -msgid "Server personality" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:94(para) -msgid "You can customize the personality of a server instance by injecting data into its file system. For example, you might want to insert ssh keys, set configuration files, or store data that you want to retrieve from inside the instance. This feature provides a minimal amount of launch-time personalization. If you require significant customization, create a custom image." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:99(para) -msgid "Follow these guidelines when you inject files:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:102(para) -msgid "The maximum size of the file path data is 255 bytes." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:105(para) -msgid "Encode the file contents as a Base64 string. The compute providers determines the maximum size of the file contents. This value can vary based on the image that is used to create the server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:109(para) -msgid "The maximum limit refers to the number of bytes in the decoded data and not to the number of characters in the encoded data." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:114(para) -msgid "You can inject text files only. You cannot inject binary or ZIP files into a new build." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:118(para) -msgid "The maximum number of file path/content pairs that you can supply is also determined by the compute provider and is defined by the maxPersonality absolute limit." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:123(para) -msgid "The absolute limit, maxPersonalitySize, is a byte limit that is guaranteed to apply to all images in the deployment. Providers can set additional per-image personality limits." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:128(para) -msgid "The file injection might not occur until after the server is built and booted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:130(para) -msgid "During file injection, any existing files that match specified files are renamed to include the BAK extension appended with a time stamp. For example, if the /etc/passwd file exists, it is backed up as /etc/passwd.bak.1246036261.5785." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:134(para) -msgid "After file injection, personality files are accessible by only system administrators. For example, on Linux, all files have root and the root group as the owner and group owner, respectively, and allow user and group read access only ( )." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:142(emphasis) -msgid "Server access addresses" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:143(para) -msgid "In a hybrid environment, the IP address of a server might not be controlled by the underlying implementation. Instead, the access IP address might be part of the dedicated hardware; for example, a router/NAT device. In this case, the addresses provided by the implementation cannot actually be used to access the server (from outside the local LAN). Here, a separate access address might be assigned at creation time to provide access to the server. This address might not be directly bound to a network interface on the server and might not necessarily appear when you query the server addresses. See . Nonetheless, clients that must access the server directly are encouraged to do so through an access address." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:173(para) -msgid "Show details for, set, update, and delete server metadata or metadata items." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:189(title) -msgid "Server addresses" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:190(para) -msgid "List addresses for a specified server or a specified server and network." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:197(title) -msgid "Server actions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:198(para) -msgid "Perform actions for a specified server, including change administrator password, reboot, rebuild, resize, and create image from server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:213(title) -msgid "Flavors" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:214(para) -msgid "List available flavors and get details for a specified flavor. A flavor is a hardware configuration for a server. Each flavor is a unique combination of disk space and memory capacity." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:231(para) -msgid "List available images, get details for a specified image, and delete an image." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:232(para) -msgid "Also, set, list, get details for, and delete image metadata." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:233(para) -msgid "An image is a collection of files that you use to create or rebuild a server. By default, operators provide pre-built operating system images. You can also create custom images: See ." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:250(title) -msgid "Image metadata" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml:251(para) -msgid "Show details for, set, update, and delete image metadata or metadata items." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:10(para) -msgid "Use virtual networking services among devices that are managed by the OpenStack Compute service. The Networking (neutron) API v2.0 combines the API v1.1 functionality with some essential Internet Protocol Address Management (IPAM) functionality. Enables users to associate IP address blocks and other network configuration settings with an OpenStack Networking network. You can choose a specific IP address from the block or let OpenStack Networking choose the first available IP address." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:21(para) -msgid "List information for all Networking API versions and show details about API v2." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:34(title) -msgid "Networks" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:35(para) -msgid "List, show information for, create, update, and delete networks." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:42(title) -msgid "Subnets" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:43(para) -msgid "List, show information for, create, update, and delete subnet resources." -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:50(title) -msgid "Ports" -msgstr "" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml:51(para) -msgid "List, show information for, create, update, and delete ports." -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-image-v2.xml:11(title) -msgid "OpenStack Image Service API v2" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2.xml:11(para) ./api-ref/src/docbkx/ch_identity-v3.xml:8(para) -msgid "Get an authentication token that permits access to the OpenStack services REST API." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:13(title) -msgid "Identity API v2.0 extensions (STABLE)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:14(para) -msgid "Query the Identity API to list available extensions with a GET request to v2.0/extensions." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:17(title) -msgid "HP-IDM-serviceId extended parameter" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:23(title) -msgid "OS-KSADM admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:96(title) -msgid "OS-KSCATALOG admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:102(title) -msgid "OS-KSEC2 admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:108(title) -msgid "OS-KSS3 admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:114(title) -msgid "OS-KSVALIDATE admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:120(title) -msgid "RAX-GRPADM admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:126(title) -msgid "RAX-KSGRP admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:132(title) -msgid "RAX-KSKEY admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml:138(title) -msgid "RAX-KSQA admin extension" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-orchestration-v1.xml:11(title) -msgid "OpenStack Orchestration API v1" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-networking-v2.xml:11(title) -msgid "OpenStack Networking API v2.0" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:9(title) -msgid "Databases Service API v1.0 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:25(title) -msgid "Database instances (instances)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:45(title) -msgid "Database instance actions (action)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:56(title) -msgid "Databases (databases)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:70(title) -msgid "Users (users)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml:84(title) -msgid "Flavors (flavors)" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-compute-v2.xml:11(title) -msgid "OpenStack Compute API v2 (CURRENT)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:11(para) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:11(para) -msgid "Manage volumes and snapshots for use with the Block Storage API, also known as cinder services." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:27(title) -msgid "API extensions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:36(title) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:58(title) -msgid "Volumes" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:37(para) -msgid "A volume is a detachable block storage device. You can think of it as a USB hard drive. You can attach a volume to one instance at a time." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:40(para) -msgid "When you create, list, or delete volumes, these status values are possible:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:51(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:154(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:273(para) -msgid "creating" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:52(para) -msgid "The volume is being created." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:55(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:159(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:278(para) -msgid "available" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:56(para) -msgid "The volume is ready to be attached to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:60(para) -msgid "attaching" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:61(para) -msgid "The volume is attaching to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:65(para) -msgid "in-use" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:66(para) -msgid "The volume is attached to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:70(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:164(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:284(para) -msgid "deleting" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:71(para) -msgid "The volume is being deleted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:74(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:169(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:289(para) -msgid "error" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:75(para) -msgid "An error occurred during volume creation." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:79(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:175(para) -msgid "error_deleting" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:80(para) -msgid "An error occurred during volume deletion." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:84(para) -msgid "backing-up" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:85(para) -msgid "The volume is being backed up." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:88(para) -msgid "restoring-backup" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:89(para) -msgid "A backup is being restored to the volume." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:93(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:301(para) -msgid "error_restoring" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:94(para) ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:302(para) -msgid "An error occurred during backup restoration to a volume." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:118(title) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:77(title) -msgid "Volume types" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:139(title) ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:98(title) -msgid "Snapshots" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:140(para) -msgid "A snapshot is a point in time copy of the data that a volume contains." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:142(para) -msgid "When you create, list, or delete snapshots, these status values are possible:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:155(para) -msgid "The snapshot is being created." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:160(para) -msgid "The snapshot is ready to be used." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:165(para) -msgid "The snapshot is being deleted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:170(para) -msgid "An error occurred during snapshot creation." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:176(para) -msgid "An error occurred during snapshot deletion." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:205(title) -msgid "Quality of service (QoS) specifications (qos-specs)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:207(para) -msgid "Administrators only, depending on policy settings. Create, list, show details for, associate, disassociate, and delete quality of service (QoS) specifications." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:237(title) -msgid "Quota sets extension (os-quota-sets)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:238(para) -msgid "Administrators only, depending on policy settings. View, update, and delete quotas for a tenant." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:245(title) -msgid "Limits extension (limits)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:246(para) -msgid "Show absolute limits for a tenant." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:252(title) -msgid "Backups" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:253(para) -msgid "A backup is a full copy of a volume stored in an external service. The service can be configured. The only supported service for now is Object Storage. A backup can subsequently be restored from the external service to either the same volume that the backup was originally taken from, or to a new volume. backup and restore operations can only be carried out on volumes which are in an unattached and available state." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:261(para) -msgid "When you create, list, or delete backups, these status values are possible:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:274(para) -msgid "The backup is being created." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:279(para) -msgid "The backup is ready to be restored to a volume." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:285(para) -msgid "The backup is being deleted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:290(para) -msgid "An error has occurred with the backup." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:295(para) -msgid "restoring" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:296(para) -msgid "The backup is being restored to a volume." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml:307(para) -msgid "In the event of an error, more information about the error can be found in the fail_reason field for the backup." -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:10(para) -msgid "Use a template language to orchestrate OpenStack services." -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:22(title) -msgid "Stacks" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:51(title) -msgid "Stack actions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:52(para) -msgid "Performs non-lifecycle operations on the stack. Specify the action in the request body." -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:63(title) -msgid "Stack resources" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:96(title) -msgid "Stack events" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:117(title) -msgid "Templates" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:130(title) -msgid "Build info" -msgstr "" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml:139(title) -msgid "Software configuration" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-image-v1.xml:11(title) -msgid "OpenStack Image Service API v1" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:10(para) -msgid "Image Service API v2.0, API v2.1, and API v2.2." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:29(para) -msgid "Create, update, and delete image metadata records. Enable users to share images with each other. Also, upload and download raw image data." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:47(title) -msgid "Image data" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:48(para) -msgid "Upload and download raw image data." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:58(title) -msgid "Image tags" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:59(para) -msgid "Add and delete image tags." -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:85(title) -msgid "Image schemas" -msgstr "" - -#: ./api-ref/src/docbkx/ch_images-v2.xml:86(para) -msgid "Get a JSON-schema document that represents an images or image entity." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:15(para) -msgid "XML support in requests and responses has been deprecated for the Compute API v3." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:22(para) -msgid "List information for all API versions." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:35(title) -msgid "Server admin actions (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:36(para) -msgid "Administrators only. Perform actions on a server. Specify the action in the request body." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:44(para) -msgid "Creates, updates, and deletes guest agents. Use guest agents to access files on the disk, configure networking, or run other applications or scripts in the guest while it runs. This hypervisor-specific extension is not currently enabled for KVM. Use of guest agents is possible only if the underlying service provider uses the Xen driver." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:56(para) -msgid "Creates and manages host aggregates. An aggregate assigns metadata to groups of compute nodes. Aggregates are only visible to the cloud provider." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:64(title) -msgid "Cells (os-cells)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:65(para) -msgid "Enables cells-related functionality such as adding neighbor cells, listing neighbor cells, and getting the capabilities of the local cell." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:74(para) -msgid "Creates and shows details for a root certificate." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:80(title) -msgid "Configuration drive (os-config-drive)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:81(para) -msgid "Returns server details for a specific service ID or user." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:89(para) -msgid "Force-deletes a server or restores a deleted server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:95(title) -msgid "Evacuate (os-evacuate)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:96(para) -msgid "Enables server evacuation." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:102(title) -msgid "Servers with extended availability zones (os-extended-availability-zone)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:104(para) -msgid "Shows the instance availability zone for compute nodes (nova-compute). Internal services appear in their own internal availability zone." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:112(title) -msgid "Server extended attributes (os-extended-server-attributes)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:114(para) -msgid "Shows metadata for servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:120(title) -msgid "Server extended status (os-extended-status)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:121(para) -msgid "Shows extended status information, vm_state, task_state, and power_state, in detailed server responses." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:128(title) -msgid "Flavor access (os-flavor-access)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:129(para) -msgid "Flavor access support." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:135(title) -msgid "Flavor extra-specs (flavor-extra-specs)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:136(para) -msgid "Lists, creates, deletes, and updates the extra-specs or keys for a flavor." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:143(title) -msgid "Flavors manage (flavor-manage)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:144(para) -msgid "Support for creating and deleting flavor." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:150(title) -msgid "Flavors with rxtx_factor extended attribute (os-flavor-rxtx)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:152(para) -msgid "Support to show the rxtx status of a flavor." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:159(para) -msgid "Returns information about Flavors." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:166(para) -msgid "Manages physical hosts." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:173(para) -msgid "Displays extra statistical information from the machine that hosts the hypervisor through the API for the hypervisor (XenAPI or KVM/libvirt)." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:181(title) -msgid "Server actions (servers)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:182(para) -msgid "Permits all users to list available actions for a specified server. Permits administrators to get details for a specified action for a specified server." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:190(title) -msgid "Instance usage audit log (os-instance-usage-audit-log)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:192(para) -msgid "Admin-only task log monitoring." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:198(title) -msgid "Limits (limits)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:199(para) -msgid "Provide all global and rate limit information." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:206(para) -msgid "Provide data on migrations." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:212(title) -msgid "Multinic (os-multinic)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:213(para) -msgid "Multiple network support." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:219(title) -msgid "Quota class (os-quota-class-sets)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:220(para) -msgid "Quota classes management support." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:227(para) -msgid "Permits administrators, depending on policy settings, to view quotas for a tenant and view and update default quotas." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:235(title) -msgid "Server remote console (os-remote-consoles)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:236(para) -msgid "Interactive console support." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:242(title) -msgid "Server usage (os-server-usage)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:243(para) -msgid "Adds launched_at and terminated_at to servers." -msgstr "" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml:250(para) -msgid "Provide simple tenant usage for tenant." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:13(para) -msgid "When making an API call to create, list, or delete volume(s), the following status values are possible:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:18(para) -msgid "CREATING: The volume is being created." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:21(para) -msgid "AVAILABLE: The volume is read to be attached to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:25(para) -msgid "ATTACHING: The volume is attaching to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:29(para) -msgid "IN-USE: The volume is attached to an instance." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:33(para) -msgid "DELETING: The volume is being deleted." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:36(para) -msgid "ERROR: An error has occurred with the volume." -msgstr "" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml:40(para) -msgid "ERROR_DELETING: There was an error deleting the volume." -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-blockstorage-v2.xml:11(title) -msgid "OpenStack Block Storage API v2" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-identity-v2.xml:11(title) -msgid "OpenStack Identity API v2 and extensions" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:25(para) -msgid "Manage tokens." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:38(title) -msgid "Service catalog" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:39(para) -msgid "Manage the catalog of services." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:56(title) -msgid "Endpoints" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:57(para) -msgid "Manage endpoints." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:67(title) -msgid "Domains" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:68(para) -msgid "Manage domains." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:69(para) -msgid "Domains represent collections of users, groups, and projects. Each is owned by exactly one domain. Users, however, can be associated with multiple projects by granting roles to the user on a project, including projects owned by other domains." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:72(para) -msgid "Each domain defines a namespace where certain API-visible name attributes exist, which affects whether those names must be globally unique or unique within that domain. In the Identity API, the uniqueness of the following attributes is as follows:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:77(para) -msgid "Domain Name. Globally unique across all domains." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:81(para) -msgid "Role Name. Globally unique across all domains." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:85(para) -msgid "User Name. Unique within the owning domain." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:89(para) -msgid "Project Name. Unique within the owning domain." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:93(para) -msgid "Group Name. Unique within the owning domain." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:132(title) -msgid "Projects" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:133(para) -msgid "Manage projects." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:168(para) -msgid "Manage users." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:196(title) -msgid "Groups" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:197(para) -msgid "Manage groups." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:225(title) -msgid "Credentials" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:226(para) -msgid "Manage credentials." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:244(title) -msgid "Roles" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:245(para) -msgid "Manage roles." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:267(title) -msgid "Policies" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml:268(para) -msgid "Manage policies." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:10(para) -msgid "Manage the accounts, containers, and objects in the Object Storage system." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:12(para) -msgid "To run the cURL command examples for these requests, set these environment variables:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:16(para) -msgid "publicURL. The public URL that is the HTTP endpoint from where you can access Object Storage. It includes the Object Storage API version number and your account name. For example, https://23.253.72.207/v1/my_account." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:23(para) -msgid "token. The authentication token for Object Storage." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:27(para) -msgid "To obtain these values, run the command." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:29(para) -msgid "As shown in this example, the public URL appears in the StorageURL field, and the token appears in the Auth Token field:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:43(para) -msgid "For a complete description of HTTP 1.1 header definitions, see Header Field Definitions." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:48(title) -msgid "Accounts" -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:49(para) -msgid "List containers for a specified account. Create, update, show, and delete account metadata." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:61(title) -msgid "Containers" -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:62(para) -msgid "List objects in a specified container. Create, show details for, and delete containers. Create, update, show, and delete container metadata." -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:77(title) -msgid "Objects" -msgstr "" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml:78(para) -msgid "Create, replace, show details for, and delete objects. Copy objects from another object with a new or different name. Update object metadata." -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-databases-v1.xml:11(title) -msgid "OpenStack Database Service API v1.0" -msgstr "" - -#: ./api-ref/src/docbkx/api-ref-compute-v3.xml:11(title) -msgid "OpenStack Compute API v3" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:13(title) -msgid "Identity API v3 extensions (STABLE)" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:15(title) -msgid "OS-OAUTH1 extension" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:16(para) -msgid "Enable users to delegate roles to third-party consumers through the OAuth 1.0a specification." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:19(para) -msgid "A user is an Identity API user who delegates its roles and who authorizes request tokens. A consumer is a third-party application that uses OAuth to access a protected resource. An OAuth-derived token enables admin users to act on behalf of the authorizing user. A request token is a token that the consumer uses to get authorization from the user and exchanges with an OAuth verifier for an access token. The OAuth verifier is a required string that is provided with the corresponding request token in exchange for an access token. An access token is a token that the consumer uses to request Identity API tokens on behalf of the authorizing user instead of using the credentials for the user." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:32(para) -msgid "Request and access tokens use token keys to identify themselves. For OpenStack purposes, the token key is the token ID. The consumer uses a token secret to establish ownership of a specified token. Both request and access tokens have token secrets." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:37(para) -msgid "Delegated authentication through OAuth occurs as follows:" -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:41(para) -msgid "A user creates a consumer." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:44(para) -msgid "The consumer gets an unauthorized request token. Then, the consumer uses the request token to initiate user authorization." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:49(para) -msgid "The user authorizes the request token." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:52(para) -msgid "The consumer exchanges the authorized request token and the OAuth verifier for an access token." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:55(para) -msgid "The authorizing user receives the request token key from the consumer out-of-band." -msgstr "" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:59(para) -msgid "The consumer uses the access token to request an Identity API token." -msgstr "" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml:0(None) -msgid "translator-credits" -msgstr "" - diff --git a/restapi-doc/restapi-doc/api-ref/locale/fr.po b/restapi-doc/restapi-doc/api-ref/locale/fr.po deleted file mode 100644 index 9bd990fae..000000000 --- a/restapi-doc/restapi-doc/api-ref/locale/fr.po +++ /dev/null @@ -1,2246 +0,0 @@ -# -# Translators: -# François Bureau, 2014 -# Frédéric , 2014 -# cloudwatt_l10n , 2014 -# Léo Carré , 2014 -# Nicolas HAHN , 2014 -msgid "" -msgstr "" -"Project-Id-Version: OpenStack Manuals\n" -"POT-Creation-Date: 2014-08-25 07:06+0000\n" -"PO-Revision-Date: 2014-08-25 14:41+0000\n" -"Last-Translator: Frédéric \n" -"Language-Team: French (http://www.transifex.com/projects/p/openstack-manuals-i18n/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ./api-ref/src/docbkx/api-ref-compute-v2-ext.xml11(title) -msgid "OpenStack Compute API v2 extensions" -msgstr "Extensions de l'API de Calcul v2 OpenStack" - -#: ./api-ref/src/docbkx/api-ref-compute-v2-ext.xml13(year) -#: ./api-ref/src/docbkx/api-ref-identity-v3.xml13(year) -#: ./api-ref/src/docbkx/api-ref-blockstorage-v1.xml13(year) -#: ./api-ref/src/docbkx/api-ref-objectstorage-v1.xml13(year) -#: ./api-ref/src/docbkx/api-ref.xml13(year) -#: ./api-ref/src/docbkx/api-ref-image-v2.xml13(year) -#: ./api-ref/src/docbkx/api-ref-orchestration-v1.xml13(year) -#: ./api-ref/src/docbkx/api-ref-networking-v2.xml13(year) -#: ./api-ref/src/docbkx/api-ref-compute-v2.xml13(year) -#: ./api-ref/src/docbkx/api-ref-image-v1.xml13(year) -#: ./api-ref/src/docbkx/api-ref-blockstorage-v2.xml13(year) -#: ./api-ref/src/docbkx/api-ref-identity-v2.xml13(year) -#: ./api-ref/src/docbkx/api-ref-databases-v1.xml13(year) -#: ./api-ref/src/docbkx/api-ref-compute-v3.xml13(year) -msgid "2010-2014" -msgstr "2010-2014" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml7(title) -msgid "Identity admin API v2.0 (STABLE)" -msgstr "API d'administration des Identités v2.0 (STABLE)" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml8(para) -msgid "Get an authentication token that permits access to the Compute API." -msgstr "Obtenir un jeton d'authentification permettant l'accès à l'API de Calcul." - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml10(title) -msgid "Versions" -msgstr "Versions" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml18(title) -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml8(title) -#: ./api-ref/src/docbkx/ch_compute-v2.xml38(title) -#: ./api-ref/src/docbkx/ch_identity-v2.xml27(title) -msgid "Extensions" -msgstr "Extensions" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml29(title) -#: ./api-ref/src/docbkx/ch_identity-v2.xml40(title) -#: ./api-ref/src/docbkx/ch_identity-v3.xml24(title) -msgid "Tokens" -msgstr "Jetons" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml41(title) -#: ./api-ref/src/docbkx/ch_identity-v3.xml167(title) -msgid "Users" -msgstr "Utilisateurs" - -#: ./api-ref/src/docbkx/ch_identity-admin-v2.xml62(title) -msgid "Tenants" -msgstr "Clients" - -#: ./api-ref/src/docbkx/preface.xml9(title) -msgid "OpenStack API Complete Reference" -msgstr "Référence Complète de l'API OpenStack" - -#: ./api-ref/src/docbkx/preface.xml10(para) -msgid "" -"Use the OpenStack APIs and extensions to launch server instances, create " -"images, assign metadata to instances and images, create containers and " -"objects, and complete other actions in your OpenStack cloud." -msgstr "Utilisez les autres APIs et extensions pour démarrer des instances de serveur, créer des images, assigner des métadonnées aux instances et images, créer des conteneurs et des objets, et mener à bien d'autres actions dans votre cloud OpenStack." - -#: ./api-ref/src/docbkx/preface.xml14(para) -msgid "" -"The API status reflects the state of the " -"endpoint on the service. CURRENT is a " -"stable version that is up-to-date, recent, and might receive future " -"versions. This endpoint should be prioritized over all others. SUPPORTED is a stable version that is available on " -"the server. However, it is not likely the most recent available and might " -"not be updated or might be deprecated at some time in the future. DEPRECATED is a stable version that is still " -"available but is being deprecated and might be removed in the future. " -"EXPERIMENTAL is not a stable version. " -"This version is under development or contains features that are otherwise " -"subject to change. For more information about API status values and version information, see Version " -"Discovery." -msgstr "L'API status reflète l'état d'aboutissement du service. ACTUEL est une version stable qui est à jour, récente, et qui pourrait bénéficier de futures versions. Cette version aboutie devrait être prioritaire par rapport à toutes les autres. SUPPORTÉ est une version stable qui est disponible sur le serveur. Cependant, ce n'est pas forcément la versions la plus récente disponible et elle pourrait ne pas être mise à jour ou elle pourrait être abandonnée relativement rapidement. ABANDONNÉ est une version stable qui est toujours disponible mais qui est abandonnée et qui pourrait être supprimée dans le futur. EXPÉRIMENTAL n'est pas une version stable. Cette version est en cours de développement ou contient des fonctionnalités qui peuvent être sujettes à modification. Pour obtenir plus d'informations sur les paramètres de l'API status et les informations de version, reportez-vous à la documentation Découverte des Versions." - -#: ./api-ref/src/docbkx/preface.xml32(para) -msgid "" -"You must install the packages for each API separately. You can use the APIs " -"and extensions after you authenticate through the Identity API:" -msgstr "Vous devez installer les packages de chaque API séparément. Vous pouvez utiliser les APIs et extensions après vous être authentifié par l'intermédiaire de l'API de Gestion des Identités:" - -#: ./api-ref/src/docbkx/preface.xml41(para) -msgid "" -"To get started with the APIs, see the OpenStack API " -"Quick Start." -msgstr "Pour débuter avec les APIs, reportez-vous à la documentation API d'OpenStack: démarrage rapide." - -#: ./api-ref/src/docbkx/ch_images-v1.xml10(title) -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml48(link) -msgid "Image Service API v1 (SUPPORTED)" -msgstr "API du Service d'Image v1 (SUPPORTÉ)" - -#: ./api-ref/src/docbkx/ch_images-v1.xml11(para) -msgid "" -"Load images for use at launch time by the Compute API. Also, assign metadata" -" to images." -msgstr "Charge les images à utiliser lors du démarrage par l'intermédiaire de l'API de Calcul. De plus, assigne les métadonnées aux images." - -#: ./api-ref/src/docbkx/ch_images-v1.xml13(para) -msgid "" -"Some cloud implementations do not expose this API and offer pretested images" -" only." -msgstr "Quelques implémentations de cloud n'exposent pas cette API et offrent des images pré-testées seulement." - -#: ./api-ref/src/docbkx/ch_images-v1.xml15(para) -#: ./api-ref/src/docbkx/ch_images-v2.xml11(para) -msgid "" -"Cloud providers can configure property protections that prevent non-" -"administrative users from updating and deleting protected properties. For " -"more information, see Image property " -"protection in the OpenStack Cloud Administrator " -"Guide." -msgstr "Les fournisseurs du cloud peuvent configurer des propriétés de protection qui éviteront que des utilisateurs non administrateurs ne modifient ou n'effacent des propriétés protégées. Pour plus d'informations, reportez-vous à la section Protection d'une propriété d'image dans le Guide de l'Administrateur du Cloud OpenStack." - -#: ./api-ref/src/docbkx/ch_images-v1.xml23(title) -#: ./api-ref/src/docbkx/ch_compute-v2.xml17(title) -#: ./api-ref/src/docbkx/ch_netconn-v2.xml20(title) -#: ./api-ref/src/docbkx/ch_identity-v2.xml14(title) -#: ./api-ref/src/docbkx/ch_databases-v1.xml11(title) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml14(title) -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml13(title) -#: ./api-ref/src/docbkx/ch_images-v2.xml19(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml21(title) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml45(title) -#: ./api-ref/src/docbkx/ch_identity-v3.xml11(title) -msgid "API versions" -msgstr "Versions de l'API" - -#: ./api-ref/src/docbkx/ch_images-v1.xml37(title) -#: ./api-ref/src/docbkx/ch_compute-v2.xml230(title) -#: ./api-ref/src/docbkx/ch_images-v2.xml28(title) -msgid "Images" -msgstr "Images" - -#: ./api-ref/src/docbkx/ch_images-v1.xml57(title) -#: ./api-ref/src/docbkx/ch_images-v2.xml69(title) -msgid "Members" -msgstr "Membres" - -#: ./api-ref/src/docbkx/ch_images-v1.xml71(title) -msgid "Shared images" -msgstr "Images partagées" - -#: ./api-ref/src/docbkx/api-ref-identity-v3.xml11(title) -msgid "OpenStack Identity API v3 and extensions" -msgstr "API de Gestion des Identités v3 OpenStack et extensions" - -#: ./api-ref/src/docbkx/api-ref-blockstorage-v1.xml11(title) -msgid "OpenStack Block Storage API v1" -msgstr "API de Stockage de Bloc v1 OpenStack" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml6(title) -msgid "Networking API v2.0 extensions" -msgstr "Extensions de l'API de gestion Réseau v2.0" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml9(para) -msgid "" -"List available Networking API v2.0 extensions and show details for a " -"specified extension." -msgstr "Liste les extensions de l'API de gestion de Réseau v2.0 et indique les informations détaillées d'une extension spécifique." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml21(title) -msgid "Quotas extension (quotas)" -msgstr "Extension de gestion des Quotas (quotas)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml22(para) -msgid "List, show information for, update, and reset quotas." -msgstr "Liste, affiche des informations, met à jour, et réinitialise les quotas." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml33(title) -msgid "Networks provider extended attributes (networks)" -msgstr "Attibuts étendus de fournisseur de réseaux (réseaux)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml34(para) -msgid "List, create, show information for, update, and delete networks." -msgstr "Liste, crée, affiche les informations, met à jour, et supprime les réseaux." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml48(title) -msgid "Networks multiple provider extension (networks)" -msgstr "Extension de fournisseur de réseaux multiple (réseaux)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml49(para) -msgid "" -"Enables administrative users to define multiple physical bindings for an " -"OpenStack Networking network and list or show details for networks with " -"multiple physical bindings." -msgstr "Permet aux utilisateurs administrateurs de définir des liaisons physiques pour un réseau OpenStack Networking et liste ou montre les détails des réseaux avec de multiples liaisons physiques." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml52(para) -msgid "" -"You cannot update any provider attributes. If you try to " -"do so, an error occurs." -msgstr "Vous ne pouvez modifier aucun des attributs de fournisseur. Si vous essayez de le faire, une erreur sera provoquée." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml54(para) -msgid "" -"To delete a network with multiple physical bindings, issue a normal delete " -"network request." -msgstr "Pour supprimer un réseau avec des liaisons physiques multiples, utilisez une demande de suppression de réseau normale." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml56(para) -msgid "" -"To define multiple physical bindings for a network, include a " -"segments list in the request body of a POST " -"/v2.0/networks request. Each element in the " -"segments list has the same structure as the provider " -"network attributes. These attributes are " -"provider:network_type, " -"provider:physical_network, and " -"provider:segmentation_id. The validation rules for these " -"attributes are the same as for the Networks provider extended attributes. You " -"cannot use both extensions at the same time." -msgstr "Pour définir des liaisons physiques multiples pour un réseau, incluez une liste de segments dans le corps d'une requête POST /v2.0/networks. Chaque élément dans la liste de segments possède la même structure que les attributs de fournisseur de réseau. Ces attributs sont provider:network_type, provider:physical_network, et provider:segmentation_id. Les règles de validation pour ces attributs sont équivalentes aux attributs étendus de fournisseur de réseaux. Vous ne pouvez pas utiliser les deux extensions en même temps." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml67(para) -msgid "" -"The NSX and ML2 plug-ins support this extension. With the ML2 plug-in, you " -"can specify multiple VLANs for a specified network, a VXLAN tunnel ID, and a" -" VLAN." -msgstr "Les plugins NSX et ML2 supportent cette extension. Avec le plugin ML2, vous pouvez spécifier de multiples VLANs pour un réseau donné, un ID de tunnel VXLAN, et un VLAN." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml73(title) -msgid "Ports binding extended attributes (ports)" -msgstr "Attributs étendus de liaison de ports (ports)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml74(para) -msgid "List, create, show information for, and update ports." -msgstr "Liste, crée, affiche les informations, et met à jour les ports." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml87(title) -msgid "Security groups and rules (security-groups)" -msgstr "Groupes et règles de sécurité (security-groups)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml88(para) -msgid "" -"List, create, show information for, and delete security groups and security " -"group rules." -msgstr "Liste, crée, affiche les informations, et supprime les groupes de sécurité et les les règles des groupes de sécurité." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml112(title) -msgid "Layer-3 networking" -msgstr "Gestion de réseau: couche 3 du modèle OSI" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml113(para) -msgid "" -"Route packets between subnets, forward packets from internal networks to " -"external ones, and access instances from external networks through floating " -"IPs." -msgstr "Effectue le routage des paquets entre les sous-réseaux, transfère les paquets des réseaux internes aux réseaux externes, et accède aux instances à partir des réseaux externes au moyen d'addresses IP flottantes." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml115(para) -msgid "This extension introduces these resources:" -msgstr "Cette extension introduit ces ressources:" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml118(para) -msgid "" -"router. A logical entity for forwarding " -"packets across internal subnets and NATting them on external networks " -"through an appropriate external gateway." -msgstr "router. Une entité logique permettant de transférer les paquets entre les sous-réseaux internes, et de les NATter sur les réseaux externes au moyen d'une passerelle externe appropriée." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml123(para) -msgid "" -"floatingip. An external IP address that " -"is mapped to a port that is attached to an internal network." -msgstr "floatingip. Une addresse IP externe qui est mappée sur un port, lui-même attaché à un réseau interne." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml131(title) -msgid "Metering labels and rules" -msgstr "Libellés et règles de comptage" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml132(para) -msgid "Create, modify, and delete OpenStack Layer3 Metering labels and rules." -msgstr "Créer, modifier, et supprimer des libellés et des règles de comptage OpenStack Layer3" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml137(title) -msgid "Load-Balancer-as-a-Service (LBaaS)" -msgstr "Répartition-de-charge-en-tant-que-service (LBaaS)" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml138(para) -msgid "" -"The LBaaS extension enables OpenStack tenants to load-balance their VM " -"traffic. The extension enables you to load-balance client traffic from one " -"network to application services, such as VMs, on the same or a different " -"network. You can load-balance several protocols, such as TCP and HTTP and " -"monitor the health of application services. The LBaaS extension supports " -"session persistence." -msgstr "L'extension LBaaS permet aux clients OpenStack de répartir la charge du traffic de leur VM. L'extension vous permet de répartir la charge du traffic du client d'un réseau aux services d'application, comme les VMs, sur le même réseau ou un réseau différent. Vous pouvez répartir la charge de plusieurs protocoles, comme TCP et HTTP, et vous pouvez surveiller la bonne exécution des services d'application. L'extension LBaaS supporte la persistence de session." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml144(caption) -msgid "Load balancer statuses" -msgstr "Etats des load-balancers" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml150(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml45(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml147(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml266(th) -msgid "Status" -msgstr "Statut" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml151(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml46(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml148(th) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml267(th) -msgid "Description" -msgstr "Description" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml152(th) -msgid "Operational" -msgstr "Opérationnel" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml157(td) -msgid "DEFERRED" -msgstr "DEFERRED" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml158(td) -msgid "An entity was created but is not yet linked to a load balancer." -msgstr "Une entité a été créée mais n'est pas encore liée à un load-balancer." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml159(td) -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml164(td) -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml174(td) -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml184(td) -msgid "No" -msgstr "Non" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml162(td) -msgid "PENDING_CREATE" -msgstr "PENDING_CREATE" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml163(td) -msgid "An entity is being created." -msgstr "Une entité est en cours de création." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml167(td) -msgid "PENDING_UPDATE" -msgstr "PENDING_UPDATE" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml168(td) -msgid "An entity was updated. It remains in an operational state." -msgstr "Une entité a été mise à jour. Elle demeure dans l'état opérationnel." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml169(td) -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml179(td) -msgid "Yes" -msgstr "Oui" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml172(td) -msgid "PENDING_DELETE" -msgstr "PENDING_DELETE" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml173(td) -msgid "An entity is in the process of being deleted." -msgstr "La suppression d'une unité a été initiée." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml177(td) -msgid "ACTIVE" -msgstr "ACTIVE" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml178(td) -msgid "An entity is in a normal operational state." -msgstr "Une entité est dans un état opérationnel normal." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml182(td) -msgid "INACTIVE" -msgstr "INACTIVE" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml183(td) -msgid "Applies to members that fail health checks." -msgstr "S'applique aux membres ayant échoué aux tests de bon fonctionnement." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml187(td) -msgid "ERROR" -msgstr "ERROR" - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml188(td) -msgid "Something has gone wrong." -msgstr "Quelque chose ne s'est pas passé correctement." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml189(td) -msgid "This might be in either an operational or non-operational state." -msgstr "Cela peut être soit dans un état opérationnel, soit dans un état non opérationnel." - -#: ./api-ref/src/docbkx/ch_netconn-ext-v2.xml193(para) -msgid "" -"Use this extension to create and manage load balancers, listeners, pools, " -"members, and health monitors." -msgstr "Utilisez cette extension pour créer et gérer des load balancers, des listeners, des pools, des membres, et des sondes de monitoring." - -#: ./api-ref/src/docbkx/api-ref-objectstorage-v1.xml11(title) -msgid "OpenStack Object Storage API v1" -msgstr "API de Stockage d'Objet v1 OpenStack" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml12(link) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml10(title) -msgid "Block Storage API v2 (CURRENT)" -msgstr "API de Stockage par Bloc v2 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml16(link) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml10(title) -msgid "Block Storage API v1 (CURRENT)" -msgstr "API de Stockage par Bloc v1 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml20(link) -#: ./api-ref/src/docbkx/ch_compute-v2.xml9(title) -msgid "Compute API v2 (CURRENT)" -msgstr "API de Calcul v2 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml24(link) -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml13(title) -msgid "Compute API v2 extensions (CURRENT)" -msgstr "Extensions de l'API de Calcul v2 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml28(link) -#: ./api-ref/src/docbkx/ch_compute-v3.xml14(title) -msgid "Compute API v3 (EXPERIMENTAL)" -msgstr "API de Calcul v3 (EXPÉRIMENTAL)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml32(link) -msgid "Database Service API v1.0 (CURRENT)" -msgstr "API de Service de Base de données v1.0 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml36(link) -#: ./api-ref/src/docbkx/ch_identity-v3.xml7(title) -msgid "Identity API v3 (STABLE)" -msgstr "API de Gestion des Identités v3 (STABLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml40(link) -#: ./api-ref/src/docbkx/ch_identity-v2.xml10(title) -msgid "Identity API v2.0 (STABLE)" -msgstr "API de Gestion des Identités v2.0 (STABLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml44(link) -#: ./api-ref/src/docbkx/ch_images-v2.xml9(title) -msgid "Image Service API v2 (SUPPORTED)" -msgstr "API de Service d'Image v2 (SUPPORTÉ)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml52(link) -#: ./api-ref/src/docbkx/ch_netconn-v2.xml9(title) -msgid "Networking API v2.0 (CURRENT)" -msgstr "API de Gestion Réseau v2.0 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml56(link) -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml9(title) -msgid "Object Storage API v1 (SUPPORTED)" -msgstr "API de Stockage d'Objet v1 (SUPPORTÉ)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml61(link) -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml9(title) -msgid "Orchestration API v1 (CURRENT)" -msgstr "API d'Orchestration v1 (ACTUELLE)" - -#: ./api-ref/src/docbkx/itemizedlist-service-list.xml64(link) - -#: ./api-ref/src/docbkx/api-ref.xml11(title) -msgid "OpenStack API Reference" -msgstr "Références des APIs Openstack" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml14(para) -msgid "" -"Extensions add features, MIME types, actions, states, headers, parameters, " -"and resources to the core Compute API without requiring a version change." -msgstr "Les extensions ajoutent des fonctionnalités, types MIME, actions, états, en-têtes, paramètres et ressources au coeur de l'API de Calcul sans requérir un changement de version." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml17(para) -#: ./api-ref/src/docbkx/ch_compute-v2.xml13(para) -msgid "" -"XML support in requests and responses has been deprecated for the Compute " -"API v2." -msgstr "Le support d'XML dans les requêtes et les réponses a été abandonné pour l'API de Calcul v2." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml20(title) -msgid "Server admin actions (action)" -msgstr "Actions de l'administrateur du serveur (action)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml21(para) -msgid "" -"Administrator only. Perform actions on a server. Specify the action in the " -"request body." -msgstr "Pour Administrateur seulement. Effectue des actions sur un serveur. Spécifiez l'action dans le corps de la requête." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml28(title) -msgid "Server diagnostics (diagnostics)" -msgstr "Diagnostics de serveur (diagnostics)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml29(para) -msgid "Get the usage data for a server." -msgstr "Obtenir les statistiques d'utilisation d'un serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml35(title) -msgid "Flavor access (flavors)" -msgstr "Accès aux instances (flavors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml36(para) -msgid "" -"Create and get details for private flavors. Also, list, add, and remove " -"tenants' access to private flavors." -msgstr "Créez et obtenez les détails des types d'instances privés. En plus, listez, ajoutez, et enlevez l'accès des clients aux types d'instances privés. " - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml43(title) -msgid "Flavors with FlavorDisabled attribute (flavors)" -msgstr "Instances avec l'attribut FlavorDisabled (flavors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml44(para) -msgid "" -"Get details for a flavor, and list details for available flavors. Includes " -"the OS-FLV-DISABLED:disabled extended attribute." -msgstr "Obtenir les informations concernant une instance, et lister les détails des instances disponibles. Inclut l'attribut étendu OS-FLV-DISABLED:disabled." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml53(title) -msgid "Flavor extra-specs (os-extra-specs)" -msgstr "Spécifications supplémentaires d'instance (os-extra-specs)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml54(para) -msgid "List, create, and update the extra-specs or keys for a flavor." -msgstr "Liste, crée, et modifie les spécifications supplémentaires ou clés d'une instance." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml61(title) -msgid "Flavors with rxtx_factor extended attribute (flavors)" -msgstr "Instances avec l'attribut étendu rxtx_factor (flavors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml63(para) -msgid "" -"Create, get details for, and list details for flavors. Includes the " -"rxtx_factor extended attribute, related to configured " -"bandwidth cap values." -msgstr "Crée, obtient et liste les informations des instances. Inclut l'attribut étendu rxtx_factor, qui est en relation avec les valeurs butoires de bande passante configurées." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml72(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml158(title) -msgid "Flavors with extended attributes (flavors)" -msgstr "Instances avec des attributs étendus (flavors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml73(para) -msgid "" -"Create, get details for, and list details for flavors. Includes the " -"rxtx_factor, OS-FLV-EXT-" -"DATA:ephemeral, and swap extended attributes." -msgstr "Crée, obtient et liste les informations des instances. Inclut les attributs étendus rxtx_factor, OS-FLV-EXT-DATA:ephemeral, et swap." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml82(title) -msgid "Flavors create or delete (flavors)" -msgstr "Création et suppression d'instances (flavors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml83(para) -msgid "Create or delete flavors." -msgstr "Créer ou supprimer des types d'instances." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml89(title) -msgid "Images with size attribute (images)" -msgstr "Images avec l'attribut de taille (images)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml90(para) -msgid "" -"List details for available images or get details for a specified image. " -"Includes the OS-EXT-IMG-SIZE:size extended attribute, which " -"shows the image size." -msgstr "Liste les informations sur les images disponibles ou obtient les informations pour une image spécifique. Inclut l'attribut étendu OS-EXT-IMG-SIZE:size, qui montre la taille de l'image." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml99(title) -msgid "Limits with project usage (limits)" -msgstr "Limites avec l'utilisation du projet (limits)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml100(para) -msgid "" -"Extend limits to show the project usage. Show information such as RAM or " -"instance quotas usage." -msgstr "Etend les limites pour montrer l'utilisation du projet. Affiche des informations comme la RAM ou l'utilisation des quotas de l'instance." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml107(title) -msgid "Limits with project usage for administrators (limits)" -msgstr "Limites avec l'utilisation du projet pour les administrateurs (limits)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml109(para) -msgid "" -"Extend limits to enable administrators to show the project usage for a " -"specified customer project ID. Show information such as RAM or instance " -"quotas usage." -msgstr "Etend les limites de façon à permettre aux administrateurs d'afficher l'utilisation du projet pour un ID de projet client spécifié. Affiche des informations comme la RAM ou l'utilisation des quotas de l'instance." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml117(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml43(title) -msgid "Guest agents (os-agents)" -msgstr "Agents invités (os-agents)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml118(para) -msgid "" -"Create, update, and delete guest agents. Use guest agents to access files on" -" the disk, configure networking, or run other applications or scripts in the" -" guest while it runs. This hypervisor-specific extension is not currently " -"enabled for KVM. Use of guest agents is possible only if the underlying " -"service provider uses the Xen driver." -msgstr "Crée, modifie, et supprime des agents invités. Utilisez les agents invités pour accéder aux fichiers du disque, configurer le réseau, ou exécuter d'autres applications ou scripts dans l'invité pendant qu'il est exécuté. Cette extension hyperviseur spécifique n'est pas actuellement active pour KVM. L'utilisation des agents invités est possible seulement si le fournisseur de service sous-jacent utilise le driver Xen." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml130(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml55(title) -msgid "Host aggregates (os-aggregates)" -msgstr "Agrégats hôtes (os-aggregates)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml131(para) -msgid "" -"Create and manage host aggregates. An aggregate assigns metadata to groups " -"of compute nodes. Aggregates are only visible to the cloud provider." -msgstr "Crée et gère les agrégats hôtes. Un agrégat assigne des métadonnées à des groupes de noeuds de calcul. Les agrégats sont visibles seulement au fournisseur du cloud." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml139(title) -msgid "Attach interfaces (os-interface)" -msgstr "Attacher des interfaces (os-interface)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml140(para) -msgid "Create, list, get details for, and delete port interfaces." -msgstr "Crée, liste, obtient des informations, et supprime les interfaces de port." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml147(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml73(title) -msgid "Root certificates (os-certificates)" -msgstr "Certificats racines (os-certificates)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml148(para) -msgid "Create and show details for a root certificate." -msgstr "Crée et montre les informations d'un certificat racine." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml154(title) -msgid "Cloudpipe (os-cloudpipe)" -msgstr "Cloudpipe (os-cloudpipe)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml155(para) -msgid "Manage virtual VPNs for projects." -msgstr "Gère les VPNs virtuels des projets." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml161(title) -msgid "Server console output (os-console-output)" -msgstr "Résultat de la console du serveur (os-console-output)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml162(para) -msgid "Get console output for a server instance." -msgstr "Obtenir la sortie de la console pour une instance de serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml168(title) -msgid "Server console (os-consoles)" -msgstr "Console du serveur (os-consoles)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml169(para) -msgid "Get a console for a server instance." -msgstr "Obtenir une console pour une instance de serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml175(title) -msgid "Coverage reports (os-coverage)" -msgstr "Rapports de couverture (os-coverage)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml181(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml88(title) -msgid "Server deferred delete (os-deferred-delete)" -msgstr "Suppression différée de serveur (os-deferred-delete)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml182(para) -msgid "Force-delete a server or restore a deleted server." -msgstr "Forcer la suppression d'un serveur ou restaurer un serveur supprimé." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml189(title) -msgid "Fixed IPs (os-fixed-ips)" -msgstr "IPs fixes (os-fixed-ips)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml190(para) -msgid "" -"Show data for a specified fixed IP, such as host name, CIDR, and address. " -"Also, reserve or free a fixed IP." -msgstr "Affiche les informations d'une adresse IP fixe, comme le nom d'hôte, le CIDR, et l'adresse. De plus, réserve ou libère une adresse IP fixe." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml198(title) -msgid "Floating IP DNS records (os-floating-ip-dns)" -msgstr "Enregistrements DNS d'adresse IP flottante (os-floating-ip-dns)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml199(para) -msgid "" -"Manage DNS records associated with IP addresses allocated by the floating " -"IPs extension. Requests are dispatched to a DNS driver selected at startup." -msgstr "Gère les enregistrements DNS associés avec les adresses IP allouées par l'extension d'adresses IP flottantes. Les requêtes sont distribuées à un driver DNS sélectionné lors du démarrage." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml207(title) -msgid "Floating IP pools (os-floating-ip-pools)" -msgstr "Espaces d'adresses IP flottantes (os-floating-ip-pools)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml208(para) -msgid "Manage groups of floating IPs." -msgstr "Gérer les groupes d'adresses IP flottantes." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml214(title) -msgid "Floating IPs (os-floating-ips)" -msgstr "Adresses IP flottantes (os-floating-ips)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml215(para) -msgid "" -"Assign and allocate floating IP addresses to instances that run in an " -"OpenStack cloud." -msgstr "Assigner et allouer des adresses IP flottantes aux instances qui fonctionnent dans un cloud OpenStack." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml222(title) -msgid "Floating IPs bulk (os-floating-ips-bulk)" -msgstr "Adresses IP flottantes en masse (os-floating-ips-bulk)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml223(para) -msgid "" -"Bulk-create, delete, and list floating IPs. By default, the pool is named " -"nova. Use the os-floating-ip-pools extension to view " -"available pools." -msgstr "Crée, supprime, et liste des adresses IP flottantes en masse. Par défaut, l'espace est nommé nova. Utilisez l'extension os-floating-ip-pools pour voir les jeux disponibles." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml232(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml165(title) -msgid "Hosts (os-hosts)" -msgstr "Hôtes (os-hosts)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml233(para) -msgid "Manage physical hosts." -msgstr "Gérez les hôtes physiques." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml239(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml172(title) -msgid "Hypervisors (os-hypervisors)" -msgstr "Hyperviseurs (os-hypervisors)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml240(para) -msgid "" -"Display extra statistical information from the machine that hosts the " -"hypervisor through the API for the hypervisor (XenAPI or KVM/libvirt)." -msgstr "Affiche des informations statistiques additionnelles à partir de la machine qui héberge l'hyperviseur, au moyen de l'API pour l'hyperviseur (XenAPI ou KVM/libvirt)." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml267(title) -msgid "Server actions (os-instance-actions)" -msgstr "Actions du serveur (os-instance-actions)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml268(para) -msgid "" -"List available actions for a specified server. Administrators can get " -"details for a specified action for a specified server." -msgstr "Liste les actions disponibles pour un serveur spécifié. Les administrateurs peuvent obtenir des informations pour une action spécifiée, pour un serveur spécifié." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml276(title) -msgid "Keypairs (os-keypairs)" -msgstr "Paires de clés (os-keypairs)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml277(para) -msgid "Generate, import, and delete SSH keys." -msgstr "Génère, importe, et supprime des clés SSH." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml283(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml205(title) -msgid "Migrations (os-migrations)" -msgstr "Migrations (os-migrations)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml284(para) -msgid "" -"Administrators only. Fetch in-progress migrations for a region or a " -"specified cell in a region." -msgstr "Pour Administrateurs seulement. Va chercher les migrations en cours pour une région ou une cellule d'une région spécifiée." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml291(title) -msgid "Networks (os-networks)" -msgstr "Réseaux (os-networks)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml292(para) -msgid "" -"Show network information for or delete networks. Also, disassociate a " -"network from a project if you use vlan mode." -msgstr "Affiche les informations de réseau pour les réseaux ou supprime des réseaux. De plus, casse le lien d'un réseau avec un projet si le mode vlan est utilisé." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml300(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml226(title) -msgid "Quota sets (os-quota-sets)" -msgstr "Jeux de quotas (os-quota-sets)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml301(para) -msgid "" -"Administrators only, depending on policy settings. View quotas for a tenant " -"and view and update default quotas." -msgstr "Pour Administrateurs seulement, en fonction des réglages de la police. Permet de voir les quotas pour un client et permet de voir ou de modifier les quotas par défaut." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml309(title) -msgid "Rules for default security group (os-security-group-default-rules)" -msgstr "Règles pour le groupe de sécurité par défaut (os-security-group-default-rules)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml311(para) -msgid "List, show information for, and create default security group rules." -msgstr "Liste, montre les informations, et crée les règles du groupe de sécurité par défaut." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml318(title) -msgid "Security groups (os-security-groups)" -msgstr "Groupes de sécutiré (os-security-groups)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml319(para) -msgid "List, show information for, create, and delete security groups." -msgstr "Liste, montre les informations, crée, et supprime les groupes de sécurité." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml326(title) -msgid "Server groups (os-server-groups)" -msgstr "Groupes de serveur (os-server-groups)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml327(para) -msgid "List, show information for, create, and delete server groups." -msgstr "Liste, montre les informations, crée, et supprime les groupes de serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml343(title) -msgid "Server password (os-server-password)" -msgstr "Mot de passe du serveur (os-server-password)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml344(para) -msgid "" -"Get and reset the encrypted administrative password set through the metadata" -" service." -msgstr "Obtient et réinitialise le mot de passe crypté administratif configuré au moyen du service de métadonnées." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml351(title) -msgid "Server shelve (servers)" -msgstr "Mise en sommeil du serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml352(para) -msgid "" -"Shelve running servers, restore shelved servers, and remove shelved servers." -msgstr "Mettre en sommeil des serveurs en fonctionnement, réveiller des serveurs en veille, et enlever des serveurs en veille." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml354(para) -msgid "" -"Shelving is useful when you have an instance that you are not using but " -"would like retain in your list of servers. For example, you can stop an " -"instance at the end of a work week and resume work at the start of the next " -"week. Use the shelve action to shelve a server. All associated " -"data and resources are kept; however, anything still in memory is not " -"retained. You can restore a shelved instance by using the " -"unshelve action. If a shelved instance is no longer needed, you" -" can remove it by using the shelveOffload action." -msgstr "Mettre en sommeil est utile lorsque vous avez une instance que vou sn'utilisez pas, mais que vous souhaitez la conserver dans votre liste de serveurs. Par exemple, vous pouvez arrêter une instanceà la fin d'une semaine de travail, et la réveiller lorsque la semaine suivante commence. Utilisez l'action suspendre pour mettre un serveur en sommeil. Toutes les données et ressources associées sont conservées; cependant, tout ce qui est toujours en mémoire ne l'est pas. Vous pouvez réveiller une instance suspendue en utilisant l'action réveiller. Si une instance suspendue n'est plus nécessaire, vous pouvez l'enlever en utilisant l'action suspendre et décharger." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml370(title) -msgid "Server start and stop (servers)" -msgstr "Démarrage et arrêt du serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml371(para) -msgid "Start a stopped server or stop a running server." -msgstr "Démarrer un serveur arrêté ou stopper un serveur en fonctionnement." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml377(title) -msgid "Manage services (os-services)" -msgstr "Gérer les services (os-services)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml378(para) -msgid "List, enable, and disable Compute services in all hosts." -msgstr "Liste, active, et désactive les services Calcul dans tous les hôtes." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml385(title) -#: ./api-ref/src/docbkx/ch_compute-v3.xml249(title) -msgid "Usage reports (os-simple-tenant-usage)" -msgstr "Rapports d'utilisation (os-simple-tenant-usage)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml386(para) -msgid "Report usage statistics on compute and storage resources." -msgstr "Rapporter les statistiques d'utilisation des ressources de stockage et de calcul." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml393(title) -msgid "Virtual interfaces (os-virtual-interfaces)" -msgstr "Interfaces virtuelles (os-virtual-interfaces)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml394(para) -msgid "List the virtual interfaces for a specified server instance." -msgstr "Liste les interfaces virtuelles pour une instance de serveur spécifiée." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml401(title) -msgid "Volume extension (os-volumes, os-snapshots)" -msgstr "Extension Volume (os-volumes, os-snapshots)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml402(para) -msgid "Manage volumes and snapshots for use with the Compute API." -msgstr "Gestion des volumes et des snapshots à utiliser avec l'API de Calcul." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml409(title) -msgid "Volume attachments (os-volume_attachments)" -msgstr "Distribution des volumes (os-volume_attachments)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml410(para) -msgid "" -"Attach volumes created through the volume API to server instances. Also, " -"list volume attachments for a server instance, get volume details for a " -"volume attachment, and delete a volume attachment." -msgstr "Attache les volumes créés au moyen de l'API Volume aux instances de serveur. De plus, liste les volumes attachés pour une instance de serveur, obtient les informations pour un volume attaché, et détache un volume." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml419(title) -msgid "Servers with block device mapping format (servers)" -msgstr "Serveurs avec un format périphérique en mode bloc mappé (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml421(para) -msgid "Create a server with a block device mapping." -msgstr "Créer un serveur avec un périphérique de bloc mappé." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml427(title) -msgid "Server OS-EXT-IPS-MAC:mac_addr extended attribute (servers)" -msgstr "Attribut étendu de serveur OS-EXT-IPS-MAC:mac_addr (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml429(para) -msgid "" -"Add OS-EXT-IPS-MAC:mac_addr extended attribute when you create, show " -"information for, or list servers." -msgstr "Ajoute l'attribut étendu OS-EXT-IPS-MAC:mac_addr lorsque vous créez, affichez les informations, ou listez les serveurs." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml436(title) -msgid "Configuration drive (servers)" -msgstr "Lecteur de configuration (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml437(para) -msgid "Extend servers and images with a configuration drive." -msgstr "Etendre les serveurs et images avec un lecteur de configuration." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml444(title) -msgid "Servers with extended availability zones (servers)" -msgstr "Serveurs avec zones de disponibilité étendues (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml446(para) -msgid "" -"Show the instance availability zone for compute nodes (nova-compute). " -"Internal services appear in their own internal availability zone." -msgstr "Affiche la zone de disponibilité d'instance pour les noeuds de calcul (nova-compute). Les services internes apparaissent dans leur propre zone de disponiblité interne." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml455(title) -msgid "Servers and images with disk config (servers, images)" -msgstr "Serveurs et images avec configuration disque (servers, images)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml457(para) -msgid "Extend servers with the diskConfig attribute." -msgstr "Etendre les serveurs avec l'attribut diskConfig." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml463(title) -msgid "Server IP type (servers)" -msgstr "Type d'adresse IP de serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml464(para) -msgid "" -"Show the type of the IP addresses assigned to an instance. Type is either " -"fixed or floating." -msgstr "Affiche le type des adresses IP assignées à une instance. Le type est soit fixe soit flottant." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml471(title) -msgid "Server extended attributes (servers)" -msgstr "Attributs étendus de serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml472(para) -msgid "Show metadata for servers." -msgstr "Affiche les métadonnées des serveurs." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml478(title) -msgid "Server extended status (servers)" -msgstr "Status étendu de serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml479(para) -msgid "" -"Show extended status information, vm_state, task_state, and power_state, in " -"detailed server responses." -msgstr "Affiche les informations de status étendues, vm_state, task_state, et power_state, dans les réponses détaillées du serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml486(title) -msgid "Servers multiple create (servers)" -msgstr "Création multiple de serveurs (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml487(para) -msgid "" -"Create one or more servers with an optional reservation ID. The request and " -"response examples show how to create multiple servers with or without a " -"reservation ID." -msgstr "Crée un ou plusieurs serveurs avec un ID de réservation optionnel. Les exemples de requêtes et de réponses montrent comment créer des serveurs multiples avec ou sans ID de réservation." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml495(title) -msgid "Server rescue and unrescue (servers)" -msgstr "Faire entrer et sortir un serveur du mode rescue (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml496(para) -msgid "Put a server into rescue mode or unrescue a server in rescue mode." -msgstr "Mettre un serveur en mode rescue ou sortir un serveur du mode rescue." - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml503(title) -msgid "Servers with scheduler hints (servers)" -msgstr "Serveurs avec conseils d'ordonnancement (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v2-ext.xml504(para) -msgid "Create a server with scheduler hints." -msgstr "Créer un serveur avec suggestions d'ordonnancement." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml10(para) -msgid "" -"Launch virtual machines from images or images stored on persistent volumes. " -"API v1.1 is identical to API v2." -msgstr "Démarrer des machines virtuelles à partir d'images ou d'images stockées sur des volumes persistents. l'API v1.1 est identique à l'API v2." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml18(para) -msgid "List information for all API versions and show details about API v2." -msgstr "Liste les informations pour toutes les versions de l'API et affiche les détails à propos de l'API v2." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml29(title) -msgid "Limits" -msgstr "Limites" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml30(para) -msgid "Get rate and absolute limits." -msgstr "Obtenir les limites de débit et absolue." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml39(para) -msgid "" -"List available Compute API v2 extensions and show details for a specified " -"extension." -msgstr "Liste les extensions de l'API de Calcul v2 disponibles et affiche les informations d'une extension spécifiée." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml51(title) -msgid "Servers" -msgstr "Serveurs" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml52(para) -msgid "List, create, get details for, update, and delete servers." -msgstr "Liste, crée, obtient les informations, modifie, et supprime les serveurs." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml55(emphasis) -msgid "Passwords" -msgstr "Mots de passe" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml56(para) -msgid "" -"When you create a server, you can specify a password through the optional " -"adminPass attribute. The specified password must meet " -"the complexity requirements set by your OpenStack Compute provider. The " -"server might enter an ERROR state if the complexity " -"requirements are not met. In this case, a client might issue a change " -"password action to reset the server password." -msgstr "Lorsque vous créez un serveur, vous pouvez indiquer un mot de passe au moyen de l'attribut optionnel adminPass. Le mot de passe indiqué doit correspondre aux réglages de complexité donnés par votre fournisseur de Calcul OpenStack. Le serveur pourrait provoquer un état d'ERREUR si les critères de complexité ne sont pas remplis. Dans ce cas, un client peut éventuellement déclencher une action de changement de mot de passe pour réinitialiser le mot de passe du serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml62(para) -msgid "" -"If you do not specify a password, a randomly generated password is assigned " -"and returned in the response object. This password is guaranteed to meet the" -" security requirements set by the compute provider. For security reasons, " -"the password is not returned in subsequent calls." -msgstr "Si vous n'indiquez pas de mot de passe, un mot de passe généré de façon aléatoire est configuré et retourné dans l'objet réponse. Ce mot de passe obéira aux règles de complexité réglés par le fournisseur de calcul. Pour des raisons de sécurité, le mot de passe n'est pas retourné dans les appels ultérieurs." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml70(emphasis) -#: ./api-ref/src/docbkx/ch_compute-v2.xml172(title) -msgid "Server metadata" -msgstr "Métadonnées de serveur" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml71(para) -msgid "" -"You can specify custom server metadata at server launch time. The maximum " -"size for each metadata key-value pair is 255 bytes. The maximum number of " -"key-value pairs that can be supplied per server is determined by the compute" -" provider. You can query this value through the maxServerMeta " -"absolute limit." -msgstr "Vous pouvez indiquer des métadonnées de serveur customisées au lancement de celui-ci. La taille maximale pour chaque clé-valeur de métadonnée est de 255 octets. Le nombre maximal de paires clé-valeur qui peuvent être fournies par serveur est déterminé par le fournisseur de calcul. Vous pouvez obtenir cette valeur au moyen de la limite absolue maxServerMeta." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml80(emphasis) -msgid "Server networks" -msgstr "Réseaux du serveur" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml81(para) -msgid "" -"You can specify networks to which the server connects at launch time. You " -"can specify one or more networks. Users can also specify a specific port on " -"the network or the fixed IP address to assign to the server interface." -msgstr "Vous pouvez spécifier les réseaux auxquels le serveur se connecte lors du lancement. Vous pouvez spécifier un ou plusieurs réseaux. Les utilisateurs peuvent aussi indiquer un port spécifique sur le réseau ou une adresse IP fixe à assigner à l'interface du serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml85(para) -msgid "" -"You can use both IPv4 and IPv6 addresses as access addresses and you can " -"assign both addresses simultaneously. You can update access addresses after " -"you create a server." -msgstr "Vous pouvez utiliser à la fois des adresses IPv4 et IPv6 en tant qu'adresses d'accès et vous pouvez configurer ces deux adresses simultanément. Vous pouvez mettre à jour les adresses d'accès après avoir créé un serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml93(emphasis) -msgid "Server personality" -msgstr "Personnalité du serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml94(para) -msgid "" -"You can customize the personality of a server instance by injecting data " -"into its file system. For example, you might want to insert ssh keys, set " -"configuration files, or store data that you want to retrieve from inside the" -" instance. This feature provides a minimal amount of launch-time " -"personalization. If you require significant customization, create a custom " -"image." -msgstr "Vous pouvez personnaliser la personnalité d'une instance de serveur en injectant des données dans son système de fichiers. Par exemple, vous pourriez insérer des clés ssh, écrire des fichiers de configuration, ou stocker des données que vous souhaiteriez retrouver depuis l'intérieur de l'instance. Cette fonctionnalité donne une personnalisation du démarrage minimale. Si vous avez besoin de plus de personnalisation, créez une image personnalisée." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml99(para) -msgid "Follow these guidelines when you inject files:" -msgstr "Suivez ces recommandations lorsque vous injectez des fichiers:" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml102(para) -msgid "The maximum size of the file path data is 255 bytes." -msgstr "La taille maximum des données de chemin de fichier est de 255 octets." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml105(para) -msgid "" -"Encode the file contents as a Base64 string. The compute providers " -"determines the maximum size of the file contents. This value can vary based " -"on the image that is used to create the server." -msgstr "Encodez le contenu des fichiers en tant que chaine de caractères en Base64. Les fournisseurs de calcul déterminent la taille maximum du contenu des fichiers. Cette valeur peut varier en fonction de l'image qui est utilisée pour créer le serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml109(para) -msgid "" -"The maximum limit refers to the number of bytes in the decoded data and not " -"to the number of characters in the encoded data." -msgstr "La limite maximum fait référence au nombre d'octets dans les données décodées et pas au nombre de caractères dans les données encodées." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml114(para) -msgid "" -"You can inject text files only. You cannot inject binary or ZIP files into a" -" new build." -msgstr "Vous pouvez injecter des fichiers texte seulement. Vous ne pouvez pas injecter de fichiers binaires ou au format ZIP dans une nouvelle version." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml118(para) -msgid "" -"The maximum number of file path/content pairs that you can supply is also " -"determined by the compute provider and is defined by the maxPersonality " -"absolute limit." -msgstr "Le nombre maximum de paires chemin de fichier/contenu que vous pouvez fournir est aussi déterminé par le fournisseur de calcul et est défini parla limite absolue maxPersonality." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml123(para) -msgid "" -"The absolute limit, maxPersonalitySize, is a byte limit that is" -" guaranteed to apply to all images in the deployment. Providers can set " -"additional per-image personality limits." -msgstr "La limite absolue, maxPersonalitySize, est une limite en octets qui est garantie s'appliquer à toutes les images dans le déploiement. Les fournisseurs peuvent configurer des limites de personnalité par image." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml128(para) -msgid "" -"The file injection might not occur until after the server is built and " -"booted." -msgstr "L'injection de fichier ne devrait pas pouvoir survenir avant que le serveur n'est été construit et n'ait booté." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml130(para) -msgid "" -"During file injection, any existing files that match specified files are " -"renamed to include the BAK extension appended with a time stamp. For " -"example, if the /etc/passwd file exists, it is backed " -"up as /etc/passwd.bak.1246036261.5785." -msgstr "Durant l'injection de fichier, tout fichier existant correspondant aux fichiers spécifiés est renommé afin d'inclure l'extension BAK avec la date et l'heure. Par exemple, si le fichier /etc/passwd existe, il est dupliqué en tant que /etc/passwd.bak.1246036261.5785." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml134(para) -msgid "" -"After file injection, personality files are accessible by only system " -"administrators. For example, on Linux, all files have root and the root " -"group as the owner and group owner, respectively, and allow user and group " -"read access only ( )." -msgstr "Après l'injection du fichier, les fichiers de personnalité sont accessibles uniquement par les administrateurs système. Par exemple, sous Linux, tous les fichiers ont l'utilisateur propriétaire root et le groupe root, respectivement, et permettent seulement des accès en lecture seule au propriétaire et au groupe ( )." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml142(emphasis) -msgid "Server access addresses" -msgstr "Adresses d'accès au serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml143(para) -msgid "" -"In a hybrid environment, the IP address of a server might not be controlled " -"by the underlying implementation. Instead, the access IP address might be " -"part of the dedicated hardware; for example, a router/NAT device. In this " -"case, the addresses provided by the implementation cannot actually be used " -"to access the server (from outside the local LAN). Here, a separate " -"access address might be assigned at creation time to " -"provide access to the server. This address might not be directly bound to a " -"network interface on the server and might not necessarily appear when you " -"query the server addresses. See . Nonetheless, clients that must access the server directly are" -" encouraged to do so through an access address." -msgstr "Dans un environnement hybride, l'adresse IP d'un serveur pourrait ne pas être contrôlée par l'implémentation inférieure. Au lieu de cela, l'adresse IP d'accès pourrait être une partie d'un composant matériel dédié; par exemple, un périphérique de routage/NAT. Dans ce cas, les adresses fournies par l'implémentation ne peuvent pas être utilisées pour accéder au serveur (depuis l'extérieur du réseau local). Ici, une adresse d'accès séparée pourrait être assignée au moment de la création pour donner l'accès au serveur. Cette adresse pourrait ne pas être directement liée à une interface réseau sur le serveur et pourrait ne pas nécessairement apparaître lorsque vous interrogez les adresses du serveur. Voyez . Néanmoins, les clients qui doivent accéder au serveur directement sont encouragés à le faire au moyen d'une adresse d'accès." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml173(para) -msgid "" -"Show details for, set, update, and delete server metadata or metadata items." -msgstr "Affiche les informations, configure, modifie, et supprime les métadonnées du serveur ou des objets." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml189(title) -msgid "Server addresses" -msgstr "Adresses du serveur" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml190(para) -msgid "" -"List addresses for a specified server or a specified server and network." -msgstr "Liste les adresses d'un serveur spécifié ou d'un serveur et d'un réseau spécifiés." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml197(title) -msgid "Server actions" -msgstr "Actions de serveur" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml198(para) -msgid "" -"Perform actions for a specified server, including change administrator " -"password, reboot, rebuild, resize, and create image from server." -msgstr "Met en oeuvre les actions pour un serveur spécifié, incluant le changement du mot de passe administrateur, le reboot, la reconstruction, le re-dimensionnement, et crée une image à partir d'un serveur." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml213(title) -msgid "Flavors" -msgstr "Types d'instance" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml214(para) -msgid "" -"List available flavors and get details for a specified flavor. A flavor is a" -" hardware configuration for a server. Each flavor is a unique combination of" -" disk space and memory capacity." -msgstr "Liste les types d'instances disponibles et obtient les informations d'un type d'instance spécifié. Un type d'instance est une configuration typique de matériel pour un serveur. Chaque type d'instance est une combinaison unique d'espace disque et de capacité mémoire." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml231(para) -msgid "" -"List available images, get details for a specified image, and delete an " -"image." -msgstr "Liste les images disponibles, obtient les informations pour une image spécifiée, et supprime une image." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml232(para) -msgid "Also, set, list, get details for, and delete image metadata." -msgstr "De plus, configure, liste, obtient les informations, et supprime les métadonnées d'une image." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml233(para) -msgid "" -"An image is a collection of files that you use to create or rebuild a " -"server. By default, operators provide pre-built operating system images. You" -" can also create custom images: See ." -msgstr "Une image est une collection de fichiers que vous utilisez pour créer ou reconstruire un serveur. Par défaut, les opérateurs fournissent des images de système d'exploitation pré-construites. Vous pouvez aussi créer des images customisées: voyez ." - -#: ./api-ref/src/docbkx/ch_compute-v2.xml250(title) -msgid "Image metadata" -msgstr "Métadonnées d'image" - -#: ./api-ref/src/docbkx/ch_compute-v2.xml251(para) -msgid "" -"Show details for, set, update, and delete image metadata or metadata items." -msgstr "Affiche les informations, configure, modifie, et supprime les métadonnées d'image ou objets de métadonnées." - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml10(para) -msgid "" -"Use virtual networking services among devices that are managed by the " -"OpenStack Compute service. The Networking (neutron) API v2.0 combines the " -"API v1.1 functionality with some essential Internet Protocol Address " -"Management (IPAM) functionality. Enables users to associate IP address " -"blocks and other network configuration settings with an OpenStack Networking" -" network. You can choose a specific IP address from the block or let " -"OpenStack Networking choose the first available IP address." -msgstr "Utilisez les services de réseau virtuels parmi les périphériques qui sont gérés par le service de Calcul OpenStack. L'API de Gestion Réseau (neutron) v2.0 combine la fonctionnalité de l'API v1.1 avec quelques-unes des fonctionnalités de Gestion d'Adresse de Protocole Internet (IPAM) essentielles. Permet aux utilisateurs d'associer des blocs d'adresses IP et d'autres réglages de configuration réseau avec un réseau OpenStack Networking. Vous pouvez choisir une adresse IP spécifique à partir du bloc ou laisser la couche Réseau d'OpenStack choisir la première adresse IP disponible." - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml21(para) -msgid "" -"List information for all Networking API versions and show details about API " -"v2." -msgstr "Liste les informations pour toutes les versions de l'API de Gestion Réseau et affiche les détails de l'API v2." - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml34(title) -msgid "Networks" -msgstr "Réseaux" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml35(para) -msgid "List, show information for, create, update, and delete networks." -msgstr "Liste, affiche les informations, crée, modifie, et supprime les réseaux." - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml42(title) -msgid "Subnets" -msgstr "Sous-réseaux" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml43(para) -msgid "" -"List, show information for, create, update, and delete subnet resources." -msgstr "Liste, affiche les informations, crée, modifie, et supprime les ressources de sous-réseau." - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml50(title) -msgid "Ports" -msgstr "Ports" - -#: ./api-ref/src/docbkx/ch_netconn-v2.xml51(para) -msgid "List, show information for, create, update, and delete ports." -msgstr "Liste, affiche les informations, crée, modifie, et supprime les ports." - -#: ./api-ref/src/docbkx/api-ref-image-v2.xml11(title) -msgid "OpenStack Image Service API v2" -msgstr "API du Service d'Image OpenStack v2" - -#: ./api-ref/src/docbkx/ch_identity-v2.xml11(para) -#: ./api-ref/src/docbkx/ch_identity-v3.xml8(para) -msgid "" -"Get an authentication token that permits access to the OpenStack services " -"REST API." -msgstr "Obtenir un jeton d'authentification permettant l'accès aux services de l'API REST d'OpenStack." - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml13(title) -msgid "Identity API v2.0 extensions (STABLE)" -msgstr "Extensions de l'API de Gestion des Indentités v2.0 (STABLE)" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml14(para) -msgid "" -"Query the Identity API to list available extensions with a GET request to " -"v2.0/extensions." -msgstr "Demande à l'API de Gestion des Identités de lister les extensions disponibles au moyen d'une requête GET sur les extensions/v2.0." - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml17(title) -msgid "HP-IDM-serviceId extended parameter" -msgstr "Paramètre étendu HP-IDM-serviceId" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml23(title) -msgid "OS-KSADM admin extension" -msgstr "Extension d'administration OS-KSADM" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml96(title) -msgid "OS-KSCATALOG admin extension" -msgstr "Extension d'administration OS-KSCATALOG" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml102(title) -msgid "OS-KSEC2 admin extension" -msgstr "Extension d'administration OS-KSEC2" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml108(title) -msgid "OS-KSS3 admin extension" -msgstr "Extension d'administration OS-KSS3" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml114(title) -msgid "OS-KSVALIDATE admin extension" -msgstr "Extension d'administration OS-KSVALIDATE" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml120(title) -msgid "RAX-GRPADM admin extension" -msgstr "Extension d'administration RAX-GRPADM" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml126(title) -msgid "RAX-KSGRP admin extension" -msgstr "Extension d'administration RAX-KSGRP" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml132(title) -msgid "RAX-KSKEY admin extension" -msgstr "Extension d'administration RAX-KSKEY" - -#: ./api-ref/src/docbkx/ch_identity-v2-ext.xml138(title) -msgid "RAX-KSQA admin extension" -msgstr "Extension d'administration RAX-KSQA" - -#: ./api-ref/src/docbkx/api-ref-orchestration-v1.xml11(title) -msgid "OpenStack Orchestration API v1" -msgstr "API d'Orchestration v1 OpenStack" - -#: ./api-ref/src/docbkx/api-ref-networking-v2.xml11(title) -msgid "OpenStack Networking API v2.0" -msgstr "API de Gestion Réseau v2.0 OpenStack" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml9(title) -msgid "Databases Service API v1.0 (CURRENT)" -msgstr "API de Service de Base de données v1.0 (ACTUELLE)" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml25(title) -msgid "Database instances (instances)" -msgstr "Instances de base de données (instances)" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml45(title) -msgid "Database instance actions (action)" -msgstr "Actions d'instance de base de données (action)" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml56(title) -msgid "Databases (databases)" -msgstr "Bases de données (databases)" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml70(title) -msgid "Users (users)" -msgstr "Utilisateurs (users)" - -#: ./api-ref/src/docbkx/ch_databases-v1.xml84(title) -msgid "Flavors (flavors)" -msgstr "Types d'instance (flavors)" - -#: ./api-ref/src/docbkx/api-ref-compute-v2.xml11(title) -msgid "OpenStack Compute API v2 (CURRENT)" -msgstr "API de Calcul v2 OpenStack (ACTUELLE)" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml11(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml11(para) -msgid "" -"Manage volumes and snapshots for use with the Block Storage API, also known " -"as cinder services." -msgstr "Gère les volumes et les instantanés à utiliser avec l'API de Stockage par Bloc, aussi connu en tant que services cinder." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml27(title) -msgid "API extensions" -msgstr "Extensions de l'API" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml36(title) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml58(title) -msgid "Volumes" -msgstr "Volumes" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml37(para) -msgid "" -"A volume is a detachable block storage device. You can think of it as a USB " -"hard drive. You can attach a volume to one instance at a time." -msgstr "Un volume est un périphérique de stockage par bloc amovible. Vous pouvez le voir comme un disque dur USB. Vous pouvez attacher un volume à une instance à un moment." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml40(para) -msgid "" -"When you create, list, or delete volumes, these status values are possible:" -msgstr "Quand vous créez, listez ou détruisez des volumes, ces valeurs de statuts sont possibles :" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml51(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml154(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml273(para) -msgid "creating" -msgstr "création" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml52(para) -msgid "The volume is being created." -msgstr "Le volume est en train d'être créer." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml55(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml159(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml278(para) -msgid "available" -msgstr "disponible" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml56(para) -msgid "The volume is ready to be attached to an instance." -msgstr "Le volume est prêt à être attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml60(para) -msgid "attaching" -msgstr "attachement" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml61(para) -msgid "The volume is attaching to an instance." -msgstr "Le volume est attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml65(para) -msgid "in-use" -msgstr "en cours d'utilisation" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml66(para) -msgid "The volume is attached to an instance." -msgstr "Le volume est attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml70(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml164(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml284(para) -msgid "deleting" -msgstr "suppression" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml71(para) -msgid "The volume is being deleted." -msgstr "Le volume est en train d'être supprimer." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml74(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml169(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml289(para) -msgid "error" -msgstr "erreur" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml75(para) -msgid "An error occurred during volume creation." -msgstr "Une erreur est survenue durant la création du volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml79(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml175(para) -msgid "error_deleting" -msgstr "erreur_suppression" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml80(para) -msgid "An error occurred during volume deletion." -msgstr "Une erreur est survenue durant la suppression du volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml84(para) -msgid "backing-up" -msgstr "sauvegarde en cours" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml85(para) -msgid "The volume is being backed up." -msgstr "Le volume est en train d'être sauvegardé." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml88(para) -msgid "restoring-backup" -msgstr "restauration de sauvegarde" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml89(para) -msgid "A backup is being restored to the volume." -msgstr "Une sauvegarde est en train de restaurer un volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml93(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml301(para) -msgid "error_restoring" -msgstr "erreur_restauration" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml94(para) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml302(para) -msgid "An error occurred during backup restoration to a volume." -msgstr "Une erreur est survenue durant la sauvegarde de restauration d'un volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml118(title) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml77(title) -msgid "Volume types" -msgstr "Types de volume" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml139(title) -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml98(title) -msgid "Snapshots" -msgstr "Instantanés " - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml140(para) -msgid "A snapshot is a point in time copy of the data that a volume contains." -msgstr "Un instantané est à un moment précis une copie des données qu'un volume contient. " - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml142(para) -msgid "" -"When you create, list, or delete snapshots, these status values are " -"possible:" -msgstr "Quand vous créez, listez ou supprimez des instantanés, ces valeurs de statuts sont possibles :" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml155(para) -msgid "The snapshot is being created." -msgstr "L'instantané est en train d'être créé." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml160(para) -msgid "The snapshot is ready to be used." -msgstr "L'instantané est prêt à être utilisé." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml165(para) -msgid "The snapshot is being deleted." -msgstr "L'instantané est en train d'être supprimer." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml170(para) -msgid "An error occurred during snapshot creation." -msgstr "Une erreur est survenue durant la création d'un instantané." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml176(para) -msgid "An error occurred during snapshot deletion." -msgstr "Une erreur est survenue durant la suppression d'un instantané." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml205(title) -msgid "Quality of service (QoS) specifications (qos-specs)" -msgstr "Spécifications de qualité de service (QoS) (qos-specs)" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml207(para) -msgid "" -"Administrators only, depending on policy settings. Create, list, show " -"details for, associate, disassociate, and delete quality of service (QoS) " -"specifications." -msgstr "Pour administrateurs seulement, en fonction des réglages de la police. Crée, liste, affiche les informations, associe, désassocie, et supprime les spécifications de qualité de service (QoS)." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml237(title) -msgid "Quota sets extension (os-quota-sets)" -msgstr "Extension de jeux de quotas (os-quota-sets)" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml238(para) -msgid "" -"Administrators only, depending on policy settings. View, update, and delete " -"quotas for a tenant." -msgstr "Pour administrateurs seulement, en fonction des réglages de police. Affiche, modifie, et supprime les quotas pour un client." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml245(title) -msgid "Limits extension (limits)" -msgstr "Extension de Limites (limits)" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml246(para) -msgid "Show absolute limits for a tenant." -msgstr "Affiche les limites absolues pour un client." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml252(title) -msgid "Backups" -msgstr "Sauvegardes" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml253(para) -msgid "" -"A backup is a full copy of a volume stored in an external service. The " -"service can be configured. The only supported service for now is Object " -"Storage. A backup can subsequently be restored from the external service to " -"either the same volume that the backup was originally taken from, or to a " -"new volume. backup and restore operations can only be carried out on volumes" -" which are in an unattached and available state." -msgstr "Une sauvegarde est une copie complète d'un volume stocké dans un service externe. Ce service peut être configuré. Le seul service supporté aujourd'hui est Object Storage. Une sauvegarde peut ensuite être restaurée depuis un service externe dans au choix le même volume où la sauvegarde a été prise ou dans un nouveau volume. Les opérations de sauvegarde et de restauration ne peuvent être uniquement effectuées sur des volumes qui sont dans des états libres et disponibles." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml261(para) -msgid "" -"When you create, list, or delete backups, these status values are possible:" -msgstr "Quand vous créez, listez ou supprimez des sauvegardes, ces valeurs de statuts sont possibles :" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml274(para) -msgid "The backup is being created." -msgstr "La sauvegarde est en train d'être créée." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml279(para) -msgid "The backup is ready to be restored to a volume." -msgstr "La sauvegarde est prête à être restaurer dans un volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml285(para) -msgid "The backup is being deleted." -msgstr "La sauvegarde est en train d'être supprimer." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml290(para) -msgid "An error has occurred with the backup." -msgstr "Une erreur est survenue avec la sauvegarde." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml295(para) -msgid "restoring" -msgstr "restauration en cours" - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml296(para) -msgid "The backup is being restored to a volume." -msgstr "La sauvegarde va être restaurée dans un volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v2.xml307(para) -msgid "" -"In the event of an error, more information about the error can be found in " -"the fail_reason field for the backup." -msgstr "Dans l'éventualité d'une erreur, plus d'information sur celle-ci peut être trouvé dans le champ fail_reason pour la sauvegarde. " - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml10(para) -msgid "Use a template language to orchestrate OpenStack services." -msgstr "Utilise un modèle de language pour orchestrer les services OpenStack." - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml22(title) -msgid "Stacks" -msgstr "Piles" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml51(title) -msgid "Stack actions" -msgstr "Actions de pile." - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml52(para) -msgid "" -"Performs non-lifecycle operations on the stack. Specify the action in the " -"request body." -msgstr "Exécute les opérations hors cycle de vie sur la pile. Spécifie l'action dans le corps de la requête." - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml63(title) -msgid "Stack resources" -msgstr "Ressources de pile" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml96(title) -msgid "Stack events" -msgstr "Evénements de pile" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml117(title) -msgid "Templates" -msgstr "Modèles" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml130(title) -msgid "Build info" -msgstr "Information de version" - -#: ./api-ref/src/docbkx/ch_orchestration-v1.xml139(title) -msgid "Software configuration" -msgstr "Configuration du logiciel" - -#: ./api-ref/src/docbkx/api-ref-image-v1.xml11(title) -msgid "OpenStack Image Service API v1" -msgstr "API de Service d'Image v1 OpenStack" - -#: ./api-ref/src/docbkx/ch_images-v2.xml10(para) -msgid "Image Service API v2.0, API v2.1, and API v2.2." -msgstr "API du Service d'Images v2.0, API v2.1, et API v2.2" - -#: ./api-ref/src/docbkx/ch_images-v2.xml29(para) -msgid "" -"Create, update, and delete image metadata records. Enable users to share " -"images with each other. Also, upload and download raw image data." -msgstr "Crée, modifie, et supprime les enregistrements des métadonnées d'image. Permet aux utilisateurs de partager des images entre eux. De plus, envoi ou télécharge les données brutes d'image." - -#: ./api-ref/src/docbkx/ch_images-v2.xml47(title) -msgid "Image data" -msgstr "Données d'image" - -#: ./api-ref/src/docbkx/ch_images-v2.xml48(para) -msgid "Upload and download raw image data." -msgstr "Envoyer et télécharger des données brutes d'image." - -#: ./api-ref/src/docbkx/ch_images-v2.xml58(title) -msgid "Image tags" -msgstr "Etiquettes d'image" - -#: ./api-ref/src/docbkx/ch_images-v2.xml59(para) -msgid "Add and delete image tags." -msgstr "Ajoute et supprime des étiquettes d'image." - -#: ./api-ref/src/docbkx/ch_images-v2.xml85(title) -msgid "Image schemas" -msgstr "Schémas d'images" - -#: ./api-ref/src/docbkx/ch_images-v2.xml86(para) -msgid "Get a JSON-schema document that represents an images or image entity." -msgstr "Obtient un document schéma-JSON qui représente une image ou une entité d'image." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml15(para) -msgid "" -"XML support in requests and responses has been deprecated for the Compute " -"API v3." -msgstr "Le support d'XML dans les requêtes et les réponses a été abandonné pour l'API de Calcul v3." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml22(para) -msgid "List information for all API versions." -msgstr "Liste les informations pour toutes les versions de l'API." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml35(title) -msgid "Server admin actions (servers)" -msgstr "Actions de l'administration de serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml36(para) -msgid "" -"Administrators only. Perform actions on a server. Specify the action in the " -"request body." -msgstr "Pour administrateurs seulement. Exécute des actions sur un serveur. Spécifie l'action dans le corps de la requête." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml44(para) -msgid "" -"Creates, updates, and deletes guest agents. Use guest agents to access files" -" on the disk, configure networking, or run other applications or scripts in " -"the guest while it runs. This hypervisor-specific extension is not currently" -" enabled for KVM. Use of guest agents is possible only if the underlying " -"service provider uses the Xen driver." -msgstr "Crée, modifie, et supprime des agents invités. Utilisez les agents invités pour accéder aux fichiers sur le disque, configurer le réseau, ou lancer d'autres applications ou scripts dans l'invité en fonctionnement. Cette extension hyperviseur spécifique n'est pas actuellement active pour KVM. L'utilisation des agents invités est possible seulement si le fournisseur de servce sous-jacent utilise le driver Xen." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml56(para) -msgid "" -"Creates and manages host aggregates. An aggregate assigns metadata to groups" -" of compute nodes. Aggregates are only visible to the cloud provider." -msgstr "Crée et gère les agrégats d'hôtes. Un agrégat assigne des métadonnées à des groupes de noeuds de calcul. Les agrégats sont seulement visibles au fournisseur du cloud." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml64(title) -msgid "Cells (os-cells)" -msgstr "Cellules (os-cells)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml65(para) -msgid "" -"Enables cells-related functionality such as adding neighbor cells, listing " -"neighbor cells, and getting the capabilities of the local cell." -msgstr "Autorise les fonctionnalités relatives aux cellules comme l'ajout de cellules voisines, le listage des cellules voisines, et l'obtention des capacités de la cellule locale." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml74(para) -msgid "Creates and shows details for a root certificate." -msgstr "Crée et affiche les détails d'un certificat racine." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml80(title) -msgid "Configuration drive (os-config-drive)" -msgstr "Lecteur de configuration (os-config-drive)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml81(para) -msgid "Returns server details for a specific service ID or user." -msgstr "Retourne les informations de serveur pour un ID de service spécifique ou un utilisateur." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml89(para) -msgid "Force-deletes a server or restores a deleted server." -msgstr "Force la suppression d'un serveur ou restaure un serveur supprimé." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml95(title) -msgid "Evacuate (os-evacuate)" -msgstr "Evacuer (os-evacuate)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml96(para) -msgid "Enables server evacuation." -msgstr "Active l'évacuation du serveur." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml102(title) -msgid "" -"Servers with extended availability zones (os-extended-availability-zone)" -msgstr "Serveurs avec zones de disponibilité étendues (os-extended-availability-zone)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml104(para) -msgid "" -"Shows the instance availability zone for compute nodes (nova-compute). " -"Internal services appear in their own internal availability zone." -msgstr "Affiche la zone de disponibilité de l'instance pour les noeuds de calcul (nova-compute). Les services internes apparaissent dans leur propre zone de disponibilité." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml112(title) -msgid "Server extended attributes (os-extended-server-attributes)" -msgstr "Attributs de serveur étendus (os-extended-server-attributes)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml114(para) -msgid "Shows metadata for servers." -msgstr "Affiche les métadonnées des serveurs." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml120(title) -msgid "Server extended status (os-extended-status)" -msgstr "Status étendu de serveur (os-extended-status)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml121(para) -msgid "" -"Shows extended status information, vm_state, task_state, and power_state, in" -" detailed server responses." -msgstr "Affiche les information de status étendues, vm_state, task_state, et power_state, dans les réponses détaillées de serveur." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml128(title) -msgid "Flavor access (os-flavor-access)" -msgstr "Accès aux types d'instance (os-flavor-access)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml129(para) -msgid "Flavor access support." -msgstr "Support de l'accès aux types d'instance." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml135(title) -msgid "Flavor extra-specs (flavor-extra-specs)" -msgstr "Spécifications additionnelles de type d'instance (flavor-extra-specs)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml136(para) -msgid "" -"Lists, creates, deletes, and updates the extra-specs or keys for a flavor." -msgstr "Liste, crée, supprime, et modifie les spécifications additionnelles ou clés pour un type d'instance." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml143(title) -msgid "Flavors manage (flavor-manage)" -msgstr "Gestion des types d'instance (flavor-manage)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml144(para) -msgid "Support for creating and deleting flavor." -msgstr "Support pour la création et suppression du type d'instance." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml150(title) -msgid "Flavors with rxtx_factor extended attribute (os-flavor-rxtx)" -msgstr "Types d'instance avec l'attribut étendu rxtx_factor (os-flavor-rxtx)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml152(para) -msgid "Support to show the rxtx status of a flavor." -msgstr "Support pour afficher le status rxtx d'un type d'instance." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml159(para) -msgid "Returns information about Flavors." -msgstr "Retourne des informations sur les types d'instances. " - -#: ./api-ref/src/docbkx/ch_compute-v3.xml166(para) -msgid "Manages physical hosts." -msgstr "Gère les hôtes physiques." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml173(para) -msgid "" -"Displays extra statistical information from the machine that hosts the " -"hypervisor through the API for the hypervisor (XenAPI or KVM/libvirt)." -msgstr "Affiche des informations statistiques additionnelles à partir de la machine qui héberge l'hyperviseur au moyen de l'API pour l'hyperviseur (XenAPI ou KVM/libvirt)." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml181(title) -msgid "Server actions (servers)" -msgstr "Actions de serveur (servers)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml182(para) -msgid "" -"Permits all users to list available actions for a specified server. Permits " -"administrators to get details for a specified action for a specified server." -msgstr "Autorise les utilisateurs à lister les actions disponibles pour un serveur spécifié. Permet aux administrateurs d'obtenir les détails d'une action spécifiée pour un serveur spécifié." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml190(title) -msgid "Instance usage audit log (os-instance-usage-audit-log)" -msgstr "Journal d'audit de l'utilisation de l'instance (os-instance-usage-audit-log)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml192(para) -msgid "Admin-only task log monitoring." -msgstr "Surveillance du journal de tâche de l'administrateur seulement." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml198(title) -msgid "Limits (limits)" -msgstr "Limites (limits)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml199(para) -msgid "Provide all global and rate limit information." -msgstr "Donne toutes les informations de limite de débit et limite globale." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml206(para) -msgid "Provide data on migrations." -msgstr "Fournit des données sur les migrations." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml212(title) -msgid "Multinic (os-multinic)" -msgstr "Multinic (os-multinic)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml213(para) -msgid "Multiple network support." -msgstr "Support de réseau multiple." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml219(title) -msgid "Quota class (os-quota-class-sets)" -msgstr "Classe de quota (os-quota-class-sets)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml220(para) -msgid "Quota classes management support." -msgstr "Support de la gestion des classes de quota." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml227(para) -msgid "" -"Permits administrators, depending on policy settings, to view quotas for a " -"tenant and view and update default quotas." -msgstr "Permet aux administrateurs, en fonction des réglages de la police, de voir les quotas pour un client et de voir et modifier les quotas par défaut." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml235(title) -msgid "Server remote console (os-remote-consoles)" -msgstr "Console du serveur distant (os-remote-consoles)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml236(para) -msgid "Interactive console support." -msgstr "Support de la console interactive." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml242(title) -msgid "Server usage (os-server-usage)" -msgstr "Utilisation du serveur (os-server-usage)" - -#: ./api-ref/src/docbkx/ch_compute-v3.xml243(para) -msgid "Adds launched_at and terminated_at to servers." -msgstr "Ajoute launched_at et terminated_at aux serveurs." - -#: ./api-ref/src/docbkx/ch_compute-v3.xml250(para) -msgid "Provide simple tenant usage for tenant." -msgstr "Donne l'utilisation du client simple pour le client." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml13(para) -msgid "" -"When making an API call to create, list, or delete volume(s), the following " -"status values are possible:" -msgstr "Quand vous faîtes un appel à l'API pour créer, lister ou supprimer un ou des volume(s), les valeurs de statuts suivantes sont possibles : " - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml18(para) -msgid "CREATING: The volume is being created." -msgstr "CRÉATION : Le volume va être créé." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml21(para) -msgid "AVAILABLE: The volume is read to be attached to an instance." -msgstr "DISPONIBLE : Le volume est prêt à être attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml25(para) -msgid "ATTACHING: The volume is attaching to an instance." -msgstr "ATTACHEMENT : Le volume est attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml29(para) -msgid "IN-USE: The volume is attached to an instance." -msgstr "UTILISATION EN COURS : Le volume est attaché à une instance." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml33(para) -msgid "DELETING: The volume is being deleted." -msgstr "SUPPRESSION : Le volume est en train d'être supprimer." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml36(para) -msgid "ERROR: An error has occurred with the volume." -msgstr "ERREUR : Une erreur est survenue avec le volume." - -#: ./api-ref/src/docbkx/ch_blockstorage-api-v1.xml40(para) -msgid "ERROR_DELETING: There was an error deleting the volume." -msgstr "ERREUR_SUPPRESSION : Il y a eu une erreur supprimant le volume." - -#: ./api-ref/src/docbkx/api-ref-blockstorage-v2.xml11(title) -msgid "OpenStack Block Storage API v2" -msgstr "API de Stockage par Bloc v2 OpenStack" - -#: ./api-ref/src/docbkx/api-ref-identity-v2.xml11(title) -msgid "OpenStack Identity API v2 and extensions" -msgstr "API de Gestion des Identités v2 OpenStack et extensions" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml25(para) -msgid "Manage tokens." -msgstr "Gestion des jetons." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml38(title) -msgid "Service catalog" -msgstr "Catalogue de services" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml39(para) -msgid "Manage the catalog of services." -msgstr "Gestion du catalogue de services." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml56(title) -msgid "Endpoints" -msgstr "Points de terminaison" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml57(para) -msgid "Manage endpoints." -msgstr "Gestion des points de terminaison." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml67(title) -msgid "Domains" -msgstr "Domaines" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml68(para) -msgid "Manage domains." -msgstr "Gestion des domaines." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml69(para) -msgid "" -"Domains represent collections of users, groups, and projects. Each is owned " -"by exactly one domain. Users, however, can be associated with multiple " -"projects by granting roles to the user on a project, including projects " -"owned by other domains." -msgstr "Les domaines représentent des collections d'utilisateurs, de groupes, et de projets. Chacun d'entre eux est possédé par exactement un domaine. Les utilisateurs, cependant, peuvent être associés avec des projets multiples en accordant des rôles à un utilisateur sur un projet, incluant les projets possédés par d'autres domaines." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml72(para) -msgid "" -"Each domain defines a namespace where certain API-visible name attributes " -"exist, which affects whether those names must be globally unique or unique " -"within that domain. In the Identity API, the uniqueness of the following " -"attributes is as follows:" -msgstr "Chaque domaine défini un espace de nommage où certains attributs de nom visibles de l'API existent, ce qui affecte le fait que ces noms doivent être globallement uniques ou uniques à l'intérieur de ce domaine. Dans l'API de Gestion des Identités, la caractère unique des attributs suivants est représenté comme suit:" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml77(para) -msgid "" -"Domain Name. Globally unique across all" -" domains." -msgstr "Nom de Domain. Globallement unique à travers tous les domaines." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml81(para) -msgid "" -"Role Name. Globally unique across all " -"domains." -msgstr "Nom de Rôle. Globallement unique à travers tous les domaines." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml85(para) -msgid "" -"User Name. Unique within the owning " -"domain." -msgstr "Nom d'Utilisateur. Unique à l'intérieur du domaine dont il est issu." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml89(para) -msgid "" -"Project Name. Unique within the owning " -"domain." -msgstr "Nom de Projet. Unique à l'intérieur du domaine dont il est issu." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml93(para) -msgid "" -"Group Name. Unique within the owning " -"domain." -msgstr "Nom de Groupe. Unique à l'intérieur du domaine dont il est issu." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml132(title) -msgid "Projects" -msgstr "Projets" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml133(para) -msgid "Manage projects." -msgstr "Gestion des projets." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml168(para) -msgid "Manage users." -msgstr "Gestion des utilisateurs." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml196(title) -msgid "Groups" -msgstr "Groupes" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml197(para) -msgid "Manage groups." -msgstr "Gestion des groupes." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml225(title) -msgid "Credentials" -msgstr "Information d'Authentification " - -#: ./api-ref/src/docbkx/ch_identity-v3.xml226(para) -msgid "Manage credentials." -msgstr "Gestion des informations d'authentification." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml244(title) -msgid "Roles" -msgstr "Rôles" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml245(para) -msgid "Manage roles." -msgstr "Gestion des rôles." - -#: ./api-ref/src/docbkx/ch_identity-v3.xml267(title) -msgid "Policies" -msgstr "Politiques" - -#: ./api-ref/src/docbkx/ch_identity-v3.xml268(para) -msgid "Manage policies." -msgstr "Gestion des polices." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml10(para) -msgid "" -"Manage the accounts, containers, and objects in the Object Storage system." -msgstr "Gestion des comptes, conteneurs, et objets dans le système de Stockage des Objets." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml12(para) -msgid "" -"To run the cURL command examples for these requests, set these environment " -"variables:" -msgstr "Pour exécuter les exemples de commande cURL pour ces requêtes, configurer ces variables d'environnement:" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml16(para) -msgid "" -"publicURL. The public URL that is the HTTP endpoint from where " -"you can access Object Storage. It includes the Object Storage API version " -"number and your account name. For example, " -"https://23.253.72.207/v1/my_account." -msgstr "publicURL. l'URL publique est le point de terminaison HTTP à partir duquel vous pouvez acéder le Stockage d'Objets. Il inclut le numéro de version de l'API de Stockage d'Objets et votre nom de compte. Par exemple, https://23.253.72.207/v1/my_account." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml23(para) -msgid "token. The authentication token for Object Storage." -msgstr "token. Le jeton d'authentification pour le Stockage d'Objet." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml27(para) -msgid "To obtain these values, run the command." -msgstr "Pour obtenir ces valeurs, exécutez la commande ." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml29(para) -msgid "" -"As shown in this example, the public URL appears in the " -"StorageURL field, and the token appears in the Auth " -"Token field:" -msgstr "Comme montré dans cet exemple, l'URL publique apparaît dans le champ StorageURL, et le jeton apparaît dans le champ Auth Token:" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml43(para) -msgid "" -"For a complete description of HTTP 1.1 header definitions, see Header" -" Field Definitions." -msgstr "Pour une description complète des définitions des headers HTTP 1.1, reportez-vous à la documentation Définitions des Champs de Header." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml48(title) -msgid "Accounts" -msgstr "Comptes" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml49(para) -msgid "" -"List containers for a specified account. Create, update, show, and delete " -"account metadata." -msgstr "Liste les conteneurs pour un compte spécifié. Crée, modifie, affiche, et supprime les métadonnées de compte." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml61(title) -msgid "Containers" -msgstr "Conteneurs" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml62(para) -msgid "" -"List objects in a specified container. Create, show details for, and delete " -"containers. Create, update, show, and delete container metadata." -msgstr "Liste les objets dans un conteneur spécifié. Crée, affiche les ifnormations, et supprime les conteneurs. Crée, modifie, montre, et supprime les métadonnées de conteneur." - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml77(title) -msgid "Objects" -msgstr "Objets" - -#: ./api-ref/src/docbkx/ch_objectstorage-v1.xml78(para) -msgid "" -"Create, replace, show details for, and delete objects. Copy objects from " -"another object with a new or different name. Update object metadata." -msgstr "Crée, remplace, montre les informations, et supprime les objets. Copie les objets à partir d'un autre objet avec un nouveau nom ou un nom différent. Met à jour les métadonnées d'objet." - -#: ./api-ref/src/docbkx/api-ref-databases-v1.xml11(title) -msgid "OpenStack Database Service API v1.0" -msgstr "API du Service de Base de données v1.0 OpenStack" - -#: ./api-ref/src/docbkx/api-ref-compute-v3.xml11(title) -msgid "OpenStack Compute API v3" -msgstr "API de Calcul v3 OpenStack" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml13(title) -msgid "Identity API v3 extensions (STABLE)" -msgstr "Extensions de l'API de Gestion des Identités v3 (STABLE)" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml15(title) -msgid "OS-OAUTH1 extension" -msgstr "Extension OS-OAUTH1" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml16(para) -msgid "" -"Enable users to delegate roles to third-party consumers through the OAuth 1.0a specification." -msgstr "Permet aux utilisateurs de déléguer les rôles à des consommateurs tierce-partie au moyen de la spécification OAuth 1.0a." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml19(para) -msgid "" -"A user is an Identity API user who delegates its roles and who authorizes " -"request tokens. A consumer is a third-party application that uses OAuth to " -"access a protected resource. An OAuth-derived token enables admin users to " -"act on behalf of the authorizing user. A request token is a token that the " -"consumer uses to get authorization from the user and exchanges with an OAuth" -" verifier for an access token. The OAuth verifier is a required string that " -"is provided with the corresponding request token in exchange for an access " -"token. An access token is a token that the consumer uses to request Identity" -" API tokens on behalf of the authorizing user instead of using the " -"credentials for the user." -msgstr "Un utilisateur est un utilisateur de l'API de Gestion des Identités qui délègue ses rôles et qui authorise les jetons de requête. un consommateur est une application tierce-partie qui utilise OAuth pour accéder à une ressource protégée. Un jeton dérivé OAuth permet aux utilisateurs administrateurs de se faire passer pour un utilisateur l'ayant autorisé. Un jeton de requête est un jeton que le consommateur utilise pour obtenir une autorisation de l'utilisateur et les échanges avec un vérificateur OAuth pour un jeton d'accès. Le vérificateur OAuth est une chaine de caractères requise qui est fournie avec le jeton de requête correspondant en échange d'un jeton d'accès. un jeton d'accès est un jeton que le consommateur utilise pour demander des jetons de l'API de Gestion des Identités de la part d'un utilisateur l'ayant autorisé au lieu d'utiliser les informations d'authentification pour l'utilisateur." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml32(para) -msgid "" -"Request and access tokens use token keys to identify themselves. For " -"OpenStack purposes, the token key is the token ID. The consumer uses a token" -" secret to establish ownership of a specified token. Both request and access" -" tokens have token secrets." -msgstr "Les jetons de requête et d'accès utilisent des jetons de clés pour s'identifier eux-même. Dans le but d'OpenStack, le jeton de clé est le jeton d'ID. Le consommateur utilise un secret de jeton afin d'établir la propriété d'un jeton spécifié. A la fois les jetons de requête et d'accès ont des secrets de jeton." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml37(para) -msgid "Delegated authentication through OAuth occurs as follows:" -msgstr "La délégation de l'authentification à travers OAuth est réalisée comme suit:" - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml41(para) -msgid "A user creates a consumer." -msgstr "Un utilisateur crée un consommateur. " - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml44(para) -msgid "" -"The consumer gets an unauthorized request token. Then, the consumer uses the" -" request token to initiate user authorization." -msgstr "Le consommateur obtient un jeton de requête non autorisé. Ensuite, le consommateur utilise le jeton de requête pour initier l'autorisation de l'utilisateur." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml49(para) -msgid "The user authorizes the request token." -msgstr "L'utilisateur autorise le jeton de requête. " - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml52(para) -msgid "" -"The consumer exchanges the authorized request token and the OAuth verifier " -"for an access token." -msgstr "Le consommateur échange le jeton de requête autorisé et le vérificateur OAuth pour un jeton d'accès." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml55(para) -msgid "" -"The authorizing user receives the request token key from the consumer out-" -"of-band." -msgstr "L'utilisateur l'ayant autorisé reçoit la clé du jeton de requête du consommateur hors bande." - -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml59(para) -msgid "The consumer uses the access token to request an Identity API token." -msgstr "Le consommateur utilise le jeton d'accès pour demander un jeton de l'API de Gestion des Identités." - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 -#: ./api-ref/src/docbkx/ch_identity-v3-ext.xml0(None) -msgid "translator-credits" -msgstr "Olivier Buisson , 2012" diff --git a/restapi-doc/restapi-doc/api-ref/pom.xml b/restapi-doc/restapi-doc/api-ref/pom.xml deleted file mode 100644 index 83b21ee68..000000000 --- a/restapi-doc/restapi-doc/api-ref/pom.xml +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - org.openstack.docs - parent-pom - 1.0.0-SNAPSHOT - ../pom.xml - - 4.0.0 - titanium-api-ref - jar - Titanium Cloud API Complete Reference - - UTF-8 - - - - src - - - locale - - - - - - com.rackspace.cloud.api - clouddocs-maven-plugin - - - - os-api-ref - - generate-html - - generate-sources - - api-ref.xml - bk-api-ref - - - - sysinv-api-v1 - - generate-html - - generate-sources - - api-ref-sysinv-v1.xml - bk-sysinv-api-v1 - - - - sm-api-v1 - - generate-html - - generate-sources - - api-ref-smapi-v1.xml - bk-sm-api-v1 - - - - os-api-ref-dcmanager-api-v1 - - generate-html - - generate-sources - - api-ref-dcmanager-v1.xml - bk-dcmanager-api-v1 - - - - fm-api-v1 - - generate-html - - generate-sources - - api-ref-fm-v1.xml - bk-fm-api-v1 - - - - os-api-ref-compute-v2-cgcs-ext - - generate-html - - generate-sources - - api-ref-compute-v2-cgcs-ext.xml - bk-api-ref-compute-v2-cgcs-ext - - - - os-api-ref-networking-v2-cgcs-ext - - generate-html - - generate-sources - - api-ref-networking-v2-cgcs-ext.xml - bk-api-ref-networking-v2-cgcs-ext - - - - os-api-ref-image-v2-cgcs-ext - - generate-html - - generate-sources - - api-ref-image-v2-cgcs-ext.xml - bk-api-ref-image-v2-cgcs-ext - - - - os-api-ref-patching-v1-cgcs-ext - - generate-html - - generate-sources - - api-ref-patching-v1.xml - bk-api-ref-patching-v1 - - - - os-api-ref-blockstorage-v2-cgcs-ext - - generate-html - - generate-sources - - api-ref-blockstorage-v2-cgcs-ext.xml - bk-api-ref-blockstorage-v2 - - - - os-api-ref-nfv-vim-v1-cgcs-ext - - generate-html - - generate-sources - - api-ref-nfv-vim-v1.xml - bk-api-ref-nfv-vim-v1 - - - - os-api-ref-smapi-v1 - - generate-html - - generate-sources - - api-ref-smapi-v1.xml - bk-api-ref-smapi-v1 - - - - - - - - appendix toc,title - article/appendix nop - article toc,title - book toc,title - chapter toc,title - section toc,title - part toc,title - qandadiv toc - qandaset toc - reference toc,title - set toc,title - true - src/docbkx - openstack - 1 - true - reviewer - false - 1 - UA-17511903-1 - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-blockstorage-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-blockstorage-v2-cgcs-ext.xml deleted file mode 100644 index 6dbe06755..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-blockstorage-v2-cgcs-ext.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Block Storage V2-TITANIUM-Extensions API - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-compute-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-compute-v2-cgcs-ext.xml deleted file mode 100644 index 8360a9b9d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-compute-v2-cgcs-ext.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Compute V2-TITANIUM-Extensions API - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-dcmanager-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-dcmanager-v1.xml deleted file mode 100755 index 270458d72..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-dcmanager-v1.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Dcmanager API v1 - - 2018 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-fm-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-fm-v1.xml deleted file mode 100644 index fca013489..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-fm-v1.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Titanium Fault Management API v1 - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-image-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-image-v2-cgcs-ext.xml deleted file mode 100644 index d75241648..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-image-v2-cgcs-ext.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Image V2-TITANIUM-Extensions API - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-networking-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-networking-v2-cgcs-ext.xml deleted file mode 100644 index 25b05b543..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-networking-v2-cgcs-ext.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Networking V2-TITANIUM-Extensions API - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-nfv-vim-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-nfv-vim-v1.xml deleted file mode 100644 index dcf03c085..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-nfv-vim-v1.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Titanium NFV VIM API v1 - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-patching-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-patching-v1.xml deleted file mode 100755 index b80a32ad7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-patching-v1.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Titanium Patching API v1 - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-smapi-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-smapi-v1.xml deleted file mode 100644 index ad1b3eed4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-smapi-v1.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Titanium Service Management API v1 - - 2018 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-sysinv-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-sysinv-v1.xml deleted file mode 100644 index e28a7202c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref-sysinv-v1.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Titanium System Inventory API v1 - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref.xml deleted file mode 100644 index fb9696a73..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/api-ref.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Titanium API Reference - - 2017 - Wind River - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_blockstorage-api-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_blockstorage-api-v2-cgcs-ext.xml deleted file mode 100644 index f1dbe1ab4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_blockstorage-api-v2-cgcs-ext.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Block Storage API v2 - Titanium extensions - Titanium extensions to the OpenStack Block Storage API such as backup - status and export/import actions for volumes and snapshots. - The typical port used for the Block Storage REST API is 8776. - However, proper technique would be to look up the cinderv2 service endpoint in keystone. - -
- Extensions - The Extensions entity lists all available extensions - - - - - - - - - -
- -
- Volumes - Titanium extensions include export and import actions for - performing backup and restores of volumes, and a backup status - attribute to indicate the status of the new actions. - - - - - - - - - - - - -
-
- Snapshots - Titanium extensions include export actions for - performing backup volumes already attached to a VM, and a backup status - attribute to indicate the status of the new actions. - - - - - - - - - - - - -
-
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_cgcs-rest-api-intro.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_cgcs-rest-api-intro.xml deleted file mode 100644 index 070a0a6d2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_cgcs-rest-api-intro.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - Titanium Cloud REST API Overview - The Wind River Systems Titanium Cloud is a high-performance, high-availability, NFV-enabled cloud operating platform that enables telecommunication and industrial operators to deploy and maintain next generation communication services. It brings together the flexibility and scalability of the IT cloud, and the high-availability and performance demanded by these industry verticals, into a unique industry-leading solution. The CG Comms Server leverages the power of Commercial Off-The-Shelf (COTS) server hardware to deliver a price-performance ratio well above alternative solutions. - The Titanium Cloud Platform leverages core Wind River virtualization and carrier-grade technologies, Intel DPDK high-performance packet processing, open architectures, cutting edge security features, and the OpenStack software suite. It extends the OpenStack software suite to implement a unique carrier-grade, high-availability architecture, on which high-performance production systems can be deployed. -
- OpenStack REST API Documentation - The OpenStack REST API Documentation is open-source; both the published formats (PDF and HTML pages) as well as the docbook/wadl source documents. The published formats can be found at http://developer.openstack.org/api-ref.html . - Although some of the general open-source OpenStack Documentation (e.g. Admin Guide) is versioned based on OpenStack Releases (e.g. Havana), the open-source OpenStack REST API Documentation is currently NOT versioned. There is only a master/current version of the OpenStack REST API Documentation containing updates from 'all' versions of OpenStack. -
-
- Strategy for Titanium Cloud REST API Documentation - Due to the lack of versioning on the open-source OpenStack REST API Documentation, Titanium Cloud REST API Documentation will not build on top of open-source documents. Instead, Titanium Cloud REST API Documenation will provide a description of the delta between the Titanium Cloud REST API and the open-source OpenStack REST API. For existing OpenStack Components (e.g. Nova, Neutron, ...), any modified APIs will be re-documented with any modified or additional request parameters, response attributes and/or behaviour. For any new Titanium Components (e.g. SysInv), all APIs will be fully documented. - Additionally, only high-level description of the semantics around objects and parameters are described in this REST API Documentation. For full description of objects and parameters, please refer to the Wind River Titanium Cloud Administration Guide. -
-
- Titanium-specific Extensions and Titanium REST API Header - By default, Titanium Cloud does not send 'Titanium Cloud'-specific extensions (attributes) as a part of any REST API responses. In order to have 'Titanium Cloud'-specific extended attributes appear in the REST API responses, the Titanium Cloud header 'wrs-header' must be present in the REST API request. As a result, vanilla Openstack clients will not get any 'Titanium Cloud'-specific extended attributes as a part of the REST API response. Titanium Cloud clients will automatically send the Titanium Cloud header, and thus contain 'Titanium Cloud'-specific extensions as a part of the REST API response. The components affected by the Titanium Cloud header are Compute, Networking, and Block Storage. -
-
- Overview of Document - The sections of this document consist of: - - - TITANIUM-Extensions to Compute REST API - - - TITANIUM-Extensions to Networking REST API - - - TITANIUM-Extensions to Block Storage REST API - - - TITANIUM-Extensions to Telemetry REST API - - - TITANIUM-Extensions to Image REST API - - - TITANIUM System Inventory (SysInv) REST API - - - TITANIUM Patching REST API - - - There are no TITANIUM-Extensions to Identity REST API (Keystone) and Orchestration REST API (Heat). -
-
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_compute-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_compute-v2-cgcs-ext.xml deleted file mode 100644 index 1fcc32684..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_compute-v2-cgcs-ext.xml +++ /dev/null @@ -1,258 +0,0 @@ - - -GET'> -]> - - Compute API v2 Titanium extensions - Titanium extensions to the OpenStack Compute API include: - - - Adding capability to specify VIF-Model on a per-NIC basis when - creating/launching/booting a VM Server. - - - Adding capability to specify VIF-PCI Address on a per-NIC basis when - creating/launching/booting a VM Server. - - - Adding an attribute to allow sorting of a VM Server's IP Addresses - in order of network attachment(NIC). - - - Adding the ability to scale the resources (currently only - vCPUs) of a VM Server up and down without requiring a restart - of the VM Server. - - - Adding a number of new attributes and behavior to VM Server Groups; - a project_id attribute for ownership, an affinity-hyperthread policy and - best_effort and max group_size metadata attribute values. - - - Support for various new Flavor Extra Specs to enable - Titanium-specific optimizations and capabilities for compute servers. - - - Adding the capability of displaying details about Provider - Network with regards to Nova usage. - - - The typical port used for the Compute REST API is 8774. - However, proper technique would be to look up the nova service endpoint in keystone. - - - - - -
- Extensions - The Extensions entity lists all available extensions - - - - - - - - - -
- - - - - - -
- Server - The Titanium extensions to the server entity are: - - - Adding capability to specify VIF-Model on a per-NIC basis when - creating/launching/booting a VM Server. - - - Adding capability to specify VIF-PCI Address on a per-NIC basis when - creating/launching/booting a VM Server. - - - Adding the ability to scale the resources (currently only - vCPUs) of a server up and down without requiring a restart of - the VM Server. - - - Adding an attribute to allow sorting of a VM Server's IP Addresses - in order of network attachment(NIC). - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
- Server Groups (os-server-groups) - The Titanium extensions to the Server Groups entity are: - - - Added a 'wrs-sg:project_id' attribute to assign tenant ownership to a - Server Group. - - - Added a 'wrs-sg:affinity-hyperthread' policy to indicate that members - of the Server Group are allowed to share hyperthread siblings. - - - Added a boolean 'wrs-sg:best_effort' metadata key/value in order to - specify whether the policy should be strictly enforced or not. - - - Added an integer 'wrs-sg:group_size' metadata key/value in order to - specify the maximum number of members in the group. - - - - - - - - - - - - - -
- - - - - -
- Flavor Extra Specs - Titanium Cloud has added several flavor extra specs, e.g. - sw:wrs:guest:heartbeat, hw:wrs:shared_vcpu, - hw:wrs:min_vcpus, sw:wrs:vtpm and many more. - For the complete list of additional flavor extra specs added by Titanium - Cloud, and an explanation of how to use them, please refer to the Wind River - Titanium Cloud Administration guide set. - - - - - - - - - - - - - -
- - - - - -
- Provider Network - The Titanium extensions to the Provider Network entity are: - - - - - - - - - -
- - - - - -
- PCI - The Titanium extensions to the PCI device entity are: - - - - - - - - - -
- - - - - -
- Hypervisors - The Titanium extensions to the Hypervisor entity are: - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_dcmanager-api-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_dcmanager-api-v1.xml deleted file mode 100644 index e988eed6a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_dcmanager-api-v1.xml +++ /dev/null @@ -1,178 +0,0 @@ - - - - Dcmanager API v1 - Manage distributed cloud operations with the dcmanager API. - The typical port used for the dcmanager REST API is 8119. - However, proper technique would be to look up the dcmanager service endpoint in Keystone. - - - - - - -
- API versions - - - - - -
- - - - - - -
- Subclouds - Subclouds are systems managed by a central System Controller. - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Subcloud Alarms - Subcloud alarms are aggregated on the System Controller. - - - - - -
- - - - - - -
- Subcloud Patch Strategy - The Subcloud patch strategy is configurable. - - - - - - - - - - - -
- - - - - - -
- Subcloud Patch Strategy Actions - Subcloud patch strategy can be actioned. - - - - - -
- - - - - - -
- Subcloud Patch Strategy Steps - Subcloud patch strategy steps can be retrieved. - - - - - - - - -
- - - - - -
- Subcloud Patch Options - Subcloud Patch Options are configurable. - - - - - - - - - - - - - - - -
- -
- - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_fm-api-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_fm-api-v1.xml deleted file mode 100644 index 2884f048b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_fm-api-v1.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - Fault Management API v1 - The API supports alarm and event collection of the cloud platform itself. - The typical port used for the FM REST API is 18002. - However, proper technique would be to look up the FM service endpoint in Keystone. - - - - - - -
- API versions - - - - - - - - -
- - - - - -
- Alarms - These APIs allow the display of the Active Alarms - in the system. - - - - - - - - - - - - - - -
- - - - - - -
- Event Log - These APIs allow the display of the Event Log - in the system. The Event log contains both historical alarms and customer logs. - - - - - - - - -
- - - - - - -
- Event Suppression - These APIs allow the display of the Event Suppression state - in the system. - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_image-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_image-v2-cgcs-ext.xml deleted file mode 100644 index d2214a0f0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_image-v2-cgcs-ext.xml +++ /dev/null @@ -1,63 +0,0 @@ - - -GET'> -]> - - Image API v2 Titanium extensions - Titanium extensions to the OpenStack Image API to support - additional properties on images for customizing migration behaviour, supporting - raw cached images in ceph cluster, disabling VM auto-recovery and indicating - the backend where the image is stored. - - The typical port used for the Image REST API is 9292. - However, proper technique would be to look up the image/glance service endpoint in Keystone. - - - - - - -
- Images - The Image entity is extended by Titanium Cloud to - have additional properties on images for customizing migration behaviour, supporting - raw cached images in ceph cluster, disabling VM auto-recovery and indicating - the backend where the image is stored. - - - - - - - - - - - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_networking-v2-cgcs-ext.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_networking-v2-cgcs-ext.xml deleted file mode 100644 index 87fbb7963..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_networking-v2-cgcs-ext.xml +++ /dev/null @@ -1,409 +0,0 @@ - - -GET'> -]> - - Networking API v2 Titanium extensions - This section describes changes made to the standard OpenStack Networking API for the Titanium Cloud. Some existing OpenStack API instances have been enhanced to add new attributes, or update the semantics of existing attributes. In other cases, entirely new API instances have been created to expose Titanium Cloud networking functionality via the standard RESTful API. - The typical port used for the Networking REST API is 9696. - However, proper technique would be to look up the neutron service endpoint in Keystone. - - - - - -
- Extensions - The Extensions entity lists all available extensions; both open-source extensions and Wind River (wrs-) extensions. - - - - - - - - - -
- - - - - - -
- Provider Network - The Provider Network entity is a new entity which was added to the OpenStack API. It enables management of provider networks via the RESTful API. The standard OpenStack API included no such entity; instead, the end user was required to edit static configuration files through the system to add, or update provider network information. - - This entity and all of its operations are only available to administrator level users. - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Provider Network Range - The Provider Network Range entity is a new entity which was added to the OpenStack API. It enables management of provider network segmentation ranges via the RESTful API. The standard OpenStack API included no such entity; instead, the end user was required to edit static configuration files through the system to add, or update provider network segmentation ranges. - - This entity and all of its operations are only available to administrator level users. - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Provider Network Type - The Provider Network Type entity is a new entity which was added to the OpenStack API. It exists simply to allow the end user to query which provider network types are supported by the system. - - This entity and all of its operations are only available to administrator level users. - - - - - - -
- - - - - -
- Provider Network Connectivity Test - The Provider Network Connectivity Test entity is a new entity which was added to the OpenStack API. It enables the verification of provider network connectivity between compute nodes. - - This entity and all of its operations are only available to administrator level users. - - - - - - - - - -
- - - - - - - - - - - - - -
- Tenant Settings - The Tenant Settings entity is a new entity which was added to the OpenStack API. It enables management of features or system behaviours on a per-tenant basis by the administrator. - - This entity and all of its operations are only available to administrator level users. - - - - - - - - - - - - - - - -
- - - - - - -
- QOS Policies - The QOS entity is a new entity which was added to the OpenStack API. It enables management of Quality of Service policies and profiles via the RESTful API. QOS policies can be created and maintained by the administrator. - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Network - The Network entity is an existing OpenStack API. It has been extended to add the following Titanium Cloud functionality. - - - A QOS policy can optionally be associated to a tenant network - - - The maximum transmit unit (MTU) of each tenant network is inherited from its associated provider network - - - The status of each tenant network is derived from the state of the DHCP server which services its subnets - - - - - - - - - - - - -
- - - - - - -
- Subnet - The Subnet entity is an existing OpenStack API. It has been extended to add the following Titanium Cloud functionality. - - - A subnet can be configured to allow VLAN tagging by the VM instance. - - - - - - - - - - - - - - - -
- - - - - - -
- Port - The Port entity is an existing OpenStack API. It has been extended to add the following Titanium Cloud functionality. - - - The network interface type (vif_model) is recorded when attached to a VM instance. - - - Source MAC address filtering is enabled when created for a tenant which has this feature enabled by the administrator. - - - The MAC address automatically updates to reflect changes to PCI passthrough devices for VM instances. - - - The maximum transmit unit (MTU) attribute is a reflection of the MTU value of the attached tenant network. - - - - - - - - - - - - -
- - - - - - -
- Router - The Router entity is an existing OpenStack API. It has been extended to add the following Titanium Cloud functionality. - - - The host attribute has been added to reflect which compute host implements the virtual router. - - - - - - - - - - - - -
- - - - - -
- Port Forwarding - The portfowarding entity is an upstream subproject that is not yet part of the existing OpenStack API. It provides virtual router port forwarding functionality. It has been included to add the functionality to the Titanium Cloud. - - - - - - - - - - - - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_nfv-vim-api-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_nfv-vim-api-v1.xml deleted file mode 100644 index 6cfa2d47b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_nfv-vim-api-v1.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - NFV VIM API v1 - Manage patch orchestration with the Titanium Cloud NFV VIM API. This includes - creation, application and querying of patch strategies. - Manage upgrade orchestration with the Titanium Cloud NFV VIM API. This includes - creation, application and querying of upgrade strategies. - The typical port used for the NFV VIM REST API is 4545. - However, proper technique would be to look up the nfv vim service endpoint in Keystone. - - - - - - -
- API versions - - - - - - - - - - - - - - - - - -
- - - - - - -
- Patch Strategy - Patch orchestration is done with a patch orchestration strategy, - or plan, for the automated patching procedure which contains a - number of parameters for customizing the particular behavior of the - patching orchestration. - - - - - - - - - - - - - - -
- - - - - -
- Upgrade Strategy - Upgrade orchestration is done with an upgrade orchestration strategy, - or plan, for the automated upgrade procedure which contains a - number of parameters for customizing the particular behavior of the - upgrade orchestration. - - - - - - - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_patching-api-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_patching-api-v1.xml deleted file mode 100755 index d95c8bc8f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_patching-api-v1.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - Patching API v1 - Manage the patching of hosts with the Titanium Cloud Patching API. - This includes upload, application, installation, removal, deletion, - and querying. - The typical port used for the Patching REST API is 15491. - However, proper technique would be to look up the patching service endpoint in Keystone. - - - - - - -
- API versions - - - - - -
- - - - - - -
- Patches - The patches used by the patching service to update individual - hosts in the cloud. - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Hosts - Hosts are the physical hosts or servers for the system - as viewed by the patching service. - - - - - - - - -
- - -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_smapi-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_smapi-v1.xml deleted file mode 100644 index 8c83ab76e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_smapi-v1.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - SM API v1 - Interact with Service Management - The typical port used for the SM REST API is 7777. - However, proper technique would be to look up the smapi service endpoint in Keystone. - - - - - - -
- API versions - - - - - - - - -
- - - - - -
- Services - These APIs allow the display of the services running - and their attributes - - - - - - - - - - - - -
- - - - - -
- Service Nodes - These APIs allow the display of the service nodes - and their attributes - - - - - - - - -
- - - - - -
- Service Groups - These APIs allow the display of the service groups - and their attributes - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_sysinv-api-v1.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_sysinv-api-v1.xml deleted file mode 100644 index 3983dfbf0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/ch_sysinv-api-v1.xml +++ /dev/null @@ -1,1383 +0,0 @@ - - - - SysInv API v1 - Manage physical servers with the Titanium System Inventory API. This includes - inventory collection and configuration of nodes, ports, interfaces, CPUs, disks, - partitions, memory, and sensors. The API also supports configuration of the - cloud's SNMP interface. - The typical port used for the SysInv REST API is 6385. - However, proper technique would be to look up the sysinv service endpoint in Keystone. - - - - - - -
- API versions - - - - - - - - -
- - - - - - -
- System - The cloud server cluster is represented internally by a unique object referred to as the - system. - - - - - - - - -
- - - - - - -
- Clusters - A cluster within the cloud server is represented internally by a unique object referred to as the - cluster. - - - - - - - - -
- - - - - - -
- Hosts - Hosts are the physical hosts or servers for the system. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- Ports - These APIs allow the display of the physical ports of - a host and their attributes. - - - - - - - - -
- - - - - - -
- Interfaces - These APIs allow the create, display, modify and delete - of the L2 interfaces of a host. - - - - - - - - - - - - - - - - - -
- - - - - - -
- CPUs - These APIs allow the display of the logical core(s) of the - processor(s) on a host, and the display and modification - of the cores assigned function. - - - - - - - - - - - -
- - - - - - -
- Memory - These APIs allow the display of the size and usage - of various memory areas of the NUMA nodes of a host. - The modification of the size of these memory areas is - also supported through these APIs. - The different memory areas of a NUMA node of a host are: - - - Memory reserved for the Platform; where the Platform consists - of the kernel and the cloud services, - - - Memory reserved for the virtual switch (Note: only on 'compute' hosts), - - - Memory reserved for the hosted VMs (Note: only on 'compute' hosts). - - - - - - - - - - - -
- - - - - - -
- SensorGroup - These APIs allow the display of the operational state - and configuration attributes of the sensorgroups of a host. - The modification of certain sensorgroup attributes is - supported through these APIs; and propagates the - configuration change to the corresponding attributes of - all sensors defined in the group. - Examples of sensorgroup sensortype monitoring for - the host are: - - - - temperature, - - - voltage, - - - current, - - - fan, - - - cpu, - - - memory, - - - disk, - - - partition, - - - firmware baseline, - - - hardware baseline. - - - - - - - - - - - -
- - - - - - -
- Sensor - These APIs allow the display of the status and - operational state of various sensor areas of a host. - The modification of the certain sensor attributes is - also supported through these APIs. - Examples of different sensortypes are as defined for - the sensorgroup. - - - - - - - - - - -
- - - - - - -
- Disks - - - - - - - - - - - -
- - - - - - -
- Partitions - - - - - - - - - - - - - - - - - -
- - - - - -
- Ceph Storage Functions - - - - - - - - - - - - - - - - - -
- - - - - - -
- Volume Groups - These APIs allow the creation, deletion, and displaying - of LVM volume groups. - - - - - - - - - - - - - - - - - -
- - - - - - -
- Physical Volumes - These APIs allow the creation, deletion, and displaying - of LVM physical volumes. - - - - - - - - - - - - - - -
- - - - - - -
- Profiles - These APIs allow the create, display and delete - of host profiles. This includes interface profiles, - cpu profiles, and volume profiles. NOTE that the - same record is used in the database for both hosts and - host profiles. - - - - - - - - - - - - - - -
- - - - - - -
- DNS - The DNS is the Domain Name Server entity for the system. - - - - - - - - - -
- - - - - - -
- NTP - The NTP is the Network Time Protocol entity for the system. - - - - - - - - - -
- - - - - - -
- External OAM - The extoam is the External OAM entity for the system. - - - - - - - - - -
- - - - - - -
- Infrastructure Subnet - The infra is the Infrastructure subnet entity for the system. - - - - - - - - - - - - - - - -
- - - - - - -
- DRBD Configuration - The drbdconfig is the Distributed Replicated Block Device (DRBD) -configuration entity for the system. - - - - - - - - - -
- - - - - - -
- SNMP Communities - - - - - - - - - - - - - - - - - -
- - - - - - -
- SNMP Trap Destinations - - - - - - - - - - - - - - - - - -
- - - - - -
- Devices - These APIs allow the display of the pci devices of - a host and their attributes. - - - - - - - - - - - -
- - - - - -
- Service Parameter - - - - - - - - - - - - - - - - - - - - -
- - - - - -
- LLDP Agents - These APIs allow the display of the lldp agents of - a host and their attributes. - - - - - - - - -
- - - - - -
- LLDP Neighbors - These APIs allow the display of the lldp neighbors of - a host and their attributes. - - - - - - - - -
- - - - - -
- Services - These APIs allow the display of the services running - and their attributes - - - - - - - - - - - -
- - - - - -
- Service Nodes - These APIs allow the display of the service nodes - and their attributes - - - - - - - - -
- - - - - -
- Service Groups - These APIs allow the display of the service groups - and their attributes - - - - - - - - -
- - - - - -
- SDN Controllers - These APIs allow for the display and configuration of - the SDN controllers that each of the compute nodes will connect - to for the purpose of SDN manager interface (i.e. OVSDB connection). - The SDN controllers configured are for active connections to - the SDN controller for each of the virtual switch instances running - on the compute nodes, and is shared across all compute nodes. - - - - - - - - - - - - - - - - - - -
- - - - - -
- Remote Logging - These APIs allow the display and configuration of the - remote logging settings - - - - - - - - -
- - - - - -
- Networks - These APIs allow the display of system managed networks. They are intended for internal system use only. - - - - - - - - -
- - - - - -
- Address Pools - These APIs allow the display and configuration of IP address pools. - - - - - - - - - - - - - - - - - -
- - - - - -
- Addresses - These APIs allow the display and configuration of IP addresses for a specific host resource. - - - - - - - - - - - - - - -
- - - - - -
- Routes - These APIs allow the display and configuration of IP route for a specific host resource. - - - - - - - - - - - - - - -
- - - - - -
- Storage Backends - These APIs allow the display and configuration of different storage backends. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
- Storage Tiers - These APIs allow the create, display, modify and delete - of the storage tiers. - - - - - - - - - - - - - - - - - -
- - - - - - -
- Controller Filesystem - These APIs allow the display and configuration of the controller filesystem. - - - - - - - - - - - - - - -
- - - - - -
- Ceph Monitors - These APIs allow the display and configuration of the Ceph monitors. - - - - - - - - - - - -
- - - - - -
- System Health - These APIs allow the display of the system health. - - - - - - - - -
- - - - - -
- Software Loads - These APIs allow the display and configuration of the software loads. - - - - - - - - - - - - - - -
- - - - - -
- Software Upgrade - These APIs allow the display and configuration of the software upgrade. - - - - - - - - - - - - - - -
- - - - - -
- System Certificate Configuration - These APIs allow for the display and configuration of - Host certificates which include SSL, Murano and Trusted Platform Module(TPM) certificates. - - - - - - - - - - - - -
- - - - - -
- Custom Firewall Rules - These APIs allow for the installation of custom firewall rules. - - - - - - - - - -
- - - - - -
- License - These APIs allow for the installation of license file and display of - the license information. - - - - - - - - - -
- - - - - -
- Labels - - - - - - - - - - - -
- -
diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/itemizedlist-service-list.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/itemizedlist-service-list.xml deleted file mode 100644 index 4516ec933..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/itemizedlist-service-list.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - Compute - API v2 Titanium extensions - - - Networking - API v2.0 Titanium extensions - - - Block Storage - API v2 Titanium extensions - - - Image - API v2 Titanium extensions - - - Titanium System Inventory - API v1 - - - Titanium Patching Service - API v1 - - - Titanium NFV VIM Service - API v1 - - - Titanium SM API Service - API v1 - - - Titanium Fault Management Service - API v1 - - diff --git a/restapi-doc/restapi-doc/api-ref/src/docbkx/preface.xml b/restapi-doc/restapi-doc/api-ref/src/docbkx/preface.xml deleted file mode 100644 index deea4243a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/docbkx/preface.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Titanium API Complete Reference - Use the Titanium APIs and extensions to launch server - instances, create images, assign metadata to instances and - images, create containers and objects, and complete other - actions in your OpenStack cloud. - You must install the packages for each API separately. You - can use the APIs and extensions after you authenticate through - the Identity API. - To get started with the APIs, see the OpenStack API Quick Start. - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_get-response.json deleted file mode 100644 index a6a665219..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_get-response.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "extension" : { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-if/api/v1.0", - "name" : "wrs-server-if", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Interface Related Extensions", - "alias" : "wrs-if", - "links" : [] - } -} - -OR - -{ - "extension" : { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-res/api/v1.0", - "name" : "wrs-server-resource", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Server Resource Extensions", - "alias" : "wrs-res", - "links" : [] - } -} - -OR - -{ - "extension" : { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-sg/api/v1.0", - "name" : "wrs-server-group", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Server Group Extensions", - "alias" : "wrs-sg", - "links" : [] - } -} - -OR - -{ - "extension" : { - "namespace" : "http://docs.windriver.com/tis/ext/wrs/api/v1.0", - "name" : "wrs-flavor-extra-spec", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Extended Flavor Extra Spec Keys" - "alias" : "wrs", - "links" : [] - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_list-response.json deleted file mode 100644 index c53454064..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/extension_list-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "extensions" : [ - ... - { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-if/api/v1.0", - "name" : "wrs-server-if", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Interface Related Extensions", - "alias" : "wrs-if", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-res/api/v1.0", - "name" : "wrs-server-resource", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Server Resource Extensions", - "alias" : "wrs-res", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.com/tis/ext/wrs-sg/api/v1.0", - "name" : "wrs-server-group", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Server Grouip Extensions", - "alias" : "wrs-sg", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.com/tis/ext/wrs/api/v1.0", - "name" : "wrs-flavor-extra-spec", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "WRS Extended Flavor Extra Spec Keys" - "alias" : "wrs", - "links" : [] - }, - ... - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-request.json deleted file mode 100644 index 3e25789e0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extra_specs": { - "sw:wrs:guest:heartbeat": "True", - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-response.json deleted file mode 100644 index 3e25789e0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-create-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extra_specs": { - "sw:wrs:guest:heartbeat": "True", - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-get-response.json deleted file mode 100644 index 4df5171a6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-get-response.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "sw:wrs:guest:heartbeat": "True", -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-list-response.json deleted file mode 100644 index f6a9513fd..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/flavor-extra-specs-list-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extra_specs": { - "sw:wrs:guest:heartbeat": "True", - "sw:wrs:srv_grp_messaging": "True", - "sw:wrs:vtpm": "False", - "hw:numa_node.0": "1", - "hw:wrs:vcpu:scheduler": "fifo:50:0" - "hw:wrs:min_vcpus": "2" - "hw:wrs:shared_vcpu": "1" - "hw:cpu_model": "Nehalem" - "aggregate_instance_extra_specs:localstorage": "False" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/hypervisor-get-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/hypervisor-get-resp.json deleted file mode 100644 index f2dbd4892..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/hypervisor-get-resp.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "hypervisor":{ - "memory_mb_used_by_node":"{\"0\": {\"2M\": 5120, \"4K\": 0, \"1G\": 0}, \"1\": {\"2M\": 0, \"4K\": 0, \"1G\": 0}}", - "cpu_info":{ - "arch":"x86_64", - "model":"IvyBridge", - "vendor":"Intel", - "features":[ - "pge", - "avx", - "vmx", - "clflush", - "sep", - "syscall", - "vme", - "dtes64", - "tsc", - "sse", - "xsave", - "xsaveopt", - "erms", - "xtpr", - "cmov", - "smep", - "ssse3", - "est", - "pat", - "monitor", - "smx", - "pcid", - "lm", - "msr", - "nx", - "fxsr", - "tm", - "sse4.1", - "pae", - "sse4.2", - "pclmuldq", - "acpi", - "tsc-deadline", - "popcnt", - "mmx", - "osxsave", - "cx8", - "mce", - "de", - "tm2", - "ht", - "dca", - "pni", - "pdcm", - "mca", - "pdpe1gb", - "apic", - "fsgsbase", - "f16c", - "pse", - "ds", - "invtsc", - "lahf_lm", - "aes", - "sse2", - "ss", - "ds_cpl", - "arat", - "pbe", - "fpu", - "cx16", - "pse36", - "mtrr", - "rdrand", - "rdtscp", - "x2apic" - ], - "topology":{ - "cores":10, - "cells":2, - "threads":2, - "sockets":1 - } - }, - "free_disk_gb":208, - "memory_mb_used":5120, - "vcpus_by_node":"{\"0\": 14, \"1\": 20}", - "memory_mb_by_node":"{\"0\": {\"2M\": 21440, \"4K\": 0, \"1G\": 0}, \"1\": {\"2M\": 29088, \"4K\": 0, \"1G\": 0}}", - "service":{ - "host":"compute-1", - "disabled_reason":null, - "id":8 - }, - "local_gb_used":9, - "id":2, - "current_workload":0, - "state":"up", - "vcpus_used_by_node":"{\"0\": {\"shared\": 0.125, \"dedicated\": 6}, \"1\": {\"shared\": 0.0, \"dedicated\": 0}}", - "status":"enabled", - "host_ip":"192.168.205.205", - "hypervisor_hostname":"compute-1", - "hypervisor_version":2006000, - "disk_available_least":208, - "local_gb":219, - "free_ram_mb":45408, - "vcpus_used":6.125, - "hypervisor_type":"QEMU", - "memory_mb":50528, - "vcpus":34, - "running_vms":7 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-get-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-get-resp.json deleted file mode 100644 index 49f01ff53..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-get-resp.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "server_group": { - "id": "616fb98f-46ca-475e-917e-2563e5a8cd19", - "wrs-sg:project_id": "28d41dbebab24bdf8854a6632271a3f6" - "name": "callservergroup", - "policies": [ - "wrs-sg:affinity-hyperthread" - ], - "members": [], - "metadata": { - "wrs-sg:best_effort": "1", - "wrs-sg:group_size": "2" - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-list-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-list-resp.json deleted file mode 100644 index 0fc048eda..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-list-resp.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "server_groups": [ - { - "id": "616fb98f-46ca-475e-917e-2563e5a8cd19", - "wrs-sg:project_id": "28d41dbebab24bdf8854a6632271a3f6" - "name": "callservergroup", - "policies": [ - "wrs-sg:affinity-hyperthread" - ], - "members": [], - "metadata": { - "wrs-sg:best_effort": "1", - "wrs-sg:group_size": "2" - } - }, - { - "id": "2fb919a2-4666-11e4-9255-080027367628", - "wrs-sg:project_id": "28d41dbebab24bdf8854a6632271a3f6" - "name": "antiaffinitygroup", - "policies": [ - "anti-affinity" - ], - "members": [], - "metadata": {} - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-req.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-req.json deleted file mode 100644 index 609d18a9c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-req.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "server_group": { - "name": "antiaffinitygroup", - "wrs-sg:project_id": "28d41dbebab24bdf8854a6632271a3f6" - "policies": [ - "anti-affinity" - ], - "metadata": { - "wrs-sg:best_effort": "1", - "wrs-sg:group_size": "2" - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-resp.json deleted file mode 100644 index afd6ae642..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/os-server-groups/server-groups-post-resp.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "server_group": { - "id": "5bbcc3c4-1da2-4437-a48a-66f15b1b13f9", - "wrs-sg:project_id": "28d41dbebab24bdf8854a6632271a3f6" - "name": "antiaffinitygroup", - "policies": [ - "anti-affinity" - ], - "members": [], - "metadata": { - "wrs-sg:best_effort": "1", - "wrs-sg:group_size": "2" - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-get-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-get-resp.json deleted file mode 100644 index f9586ae6d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-get-resp.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "pci_device_usage": [ - { - "pci_vfs_used": 0, - "host": "compute-3", - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_configured": 0, - "device_name": "Coleto Creek PCIe Co-processor", - "vendor_id": "8086", - "device_id": "0443", - "class_id": "0b4000" - }, - { - "pci_vfs_used": 1, - "host": "compute-1", - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_configured": 32, - "device_name": "Coleto Creek PCIe Co-processor", - "vendor_id": "8086", - "device_id": "0443", - "class_id": "0b4000" - }, - { - "pci_vfs_used": 0, - "host": "compute-2", - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_configured": 0, - "device_name": "Coleto Creek PCIe Co-processor", - "vendor_id": "8086", - "device_id": "0443", - "class_id": "0b4000" - }, - { - "pci_vfs_used": 0, - "host": "compute-0", - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_configured": 32, - "device_name": "Coleto Creek PCIe Co-processor", - "vendor_id": "8086", - "device_id": "0443", - "class_id": "0b4000" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-list-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-list-resp.json deleted file mode 100644 index 72124bf46..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/pci-list-resp.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "pci_device_usage": [ - { - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_used": 1, - "vendor_id": "8086", - "pci_vfs_configured": 64, - "device_name": "Coleto Creek PCIe Co-processor", - "device_id": "0443", - "class_id": "0b4000" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/providernet-get-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/providernet-get-resp.json deleted file mode 100644 index 69f542658..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/providernet-get-resp.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "providernet": { - "pci_pfs_used": 0, - "pci_pfs_configured": 0, - "pci_vfs_used": 1, - "pci_vfs_configured": 16, - "id": "21c41131-07fb-43ac-a6f3-8a8020152530", - "name": "group0-data0" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-get-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-get-resp.json deleted file mode 100644 index 02952b1ca..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-get-resp.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "server" : { - "accessIPv4" : "", - "wrs-if:nics" : [ - { - "nic1" : { - "network" : "tenant1-mgmt-net", - "port_id" : "dc627524-64a9-4fec-957a-b271f353fb22", - "vif_model" : "virtio", - "vif_pci_address": "0000:04:12.0", - "mtu" : 1500 - } - } - ], - "OS-EXT-SRV-ATTR:instance_name" : "instance-0000003d", - "OS-SRV-USG:terminated_at" : null, - "accessIPv6" : "", - "config_drive" : "", - "OS-DCF:diskConfig" : "MANUAL", - "wrs-sg:server_group" : "", - "updated" : "2015-04-01T20:32:57Z", - "metadata" : {}, - "id" : "770a214c-5d22-42ce-9273-f6baab0ad7fd", - "flavor" : { - "id" : "00bbded9-318a-461a-aef8-3904356ca8d9", - "links" : [ - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/flavors/00bbded9-318a-461a-aef8-3904356ca8d9" - } - ] - }, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:8774/v2/101d1cffc5ec4accbdb075c89a4c5cd7/servers/770a214c-5d22-42ce-9273-f6baab0ad7fd" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/servers/770a214c-5d22-42ce-9273-f6baab0ad7fd" - } - ], - "OS-EXT-SRV-ATTR:host" : "compute-0", - "OS-EXT-AZ:availability_zone" : "nova", - "name" : "vm07-shared-vcpu-id", - "hostId" : "938254ae1b04aabc901dd4ad2cf2a561a4eab858efa0b0a48eb048ff", - "user_id" : "13dbcb9d22474c39a4a612cd44bf58ad", - "status" : "ACTIVE", - "wrs-res:topology" : "node:1, 1024MB, pgsize:4K, vcpus:3", - "wrs-res:pci_devices": "node:1, addr:0000:83:04.6, type:VF, vendor:8086, product:0443", - "OS-EXT-STS:power_state" : 1, - "OS-EXT-SRV-ATTR:hypervisor_hostname" : "compute-0", - "tenant_id" : "101d1cffc5ec4accbdb075c89a4c5cd7", - "OS-SRV-USG:launched_at" : "2015-04-01T20:32:57.000000", - "OS-EXT-STS:vm_state" : "active", - "OS-EXT-STS:task_state" : null, - "progress" : 0, - "key_name" : null, - "image" : { - "id" : "a99dfaa7-c850-4a63-ad99-d4a5f8da3069", - "links" : [ - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/images/a99dfaa7-c850-4a63-ad99-d4a5f8da3069" - } - ] - }, - "wrs-res:vcpus (min/cur/max)" : [ - 3, - 3, - 3 - ], - "created" : "2015-04-01T20:32:49Z", - "addresses" : { - "tenant1-mgmt-net" : [ - { - "OS-EXT-IPS:type" : "fixed", - "version" : 4, - "OS-EXT-IPS-MAC:mac_addr" : "fa:16:3e:fc:65:81", - "addr" : "192.168.102.6" - } - ] - }, - "os-extended-volumes:volumes_attached" : [] - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-interface-attach-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-interface-attach-request.json deleted file mode 100644 index bf5e41cfc..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-interface-attach-request.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "interfaceAttachment": { - "net_id": "e8b9af5e-1f47-429e-9ee0-fef202d4ea14", - "wrs-if:vif_model": "virtio" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-list-resp.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-list-resp.json deleted file mode 100644 index cada460db..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-list-resp.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "servers" : [ - { - "accessIPv4" : "", - "wrs-if:nics" : [ - { - "nic1" : { - "network" : "tenant1-mgmt-net", - "port_id" : "dc627524-64a9-4fec-957a-b271f353fb22", - "vif_model" : "virtio", - "vif_pci_address": "0000:04:12.0", - "mtu" : 1500 - } - } - ], - "OS-EXT-SRV-ATTR:instance_name" : "instance-0000003d", - "OS-SRV-USG:terminated_at" : null, - "accessIPv6" : "", - "config_drive" : "", - "OS-DCF:diskConfig" : "MANUAL", - "wrs-sg:server_group" : "", - "updated" : "2015-04-01T20:32:57Z", - "metadata" : {}, - "id" : "770a214c-5d22-42ce-9273-f6baab0ad7fd", - "flavor" : { - "id" : "00bbded9-318a-461a-aef8-3904356ca8d9", - "links" : [ - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/flavors/00bbded9-318a-461a-aef8-3904356ca8d9" - } - ] - }, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:8774/v2/101d1cffc5ec4accbdb075c89a4c5cd7/servers/770a214c-5d22-42ce-9273-f6baab0ad7fd" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/servers/770a214c-5d22-42ce-9273-f6baab0ad7fd" - } - ], - "OS-EXT-SRV-ATTR:host" : "compute-0", - "OS-EXT-AZ:availability_zone" : "nova", - "name" : "vm07-shared-vcpu-id", - "hostId" : "938254ae1b04aabc901dd4ad2cf2a561a4eab858efa0b0a48eb048ff", - "user_id" : "13dbcb9d22474c39a4a612cd44bf58ad", - "status" : "ACTIVE", - "wrs-res:topology" : "node:1, 1024MB, pgsize:4K, vcpus:3", - "wrs-res:pci_devices": "node:1, addr:0000:83:04.6, type:VF, vendor:8086, product:0443", - "OS-EXT-STS:power_state" : 1, - "OS-EXT-SRV-ATTR:hypervisor_hostname" : "compute-0", - "tenant_id" : "101d1cffc5ec4accbdb075c89a4c5cd7", - "OS-SRV-USG:launched_at" : "2015-04-01T20:32:57.000000", - "OS-EXT-STS:vm_state" : "active", - "OS-EXT-STS:task_state" : null, - "progress" : 0, - "key_name" : null, - "image" : { - "id" : "a99dfaa7-c850-4a63-ad99-d4a5f8da3069", - "links" : [ - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:8774/101d1cffc5ec4accbdb075c89a4c5cd7/images/a99dfaa7-c850-4a63-ad99-d4a5f8da3069" - } - ] - }, - "wrs-res:vcpus (min/cur/max)" : [ - 3, - 3, - 3 - ], - "created" : "2015-04-01T20:32:49Z", - "addresses" : { - "tenant1-mgmt-net" : [ - { - "OS-EXT-IPS:type" : "fixed", - "version" : 4, - "OS-EXT-IPS-MAC:mac_addr" : "fa:16:3e:fc:65:81", - "addr" : "192.168.102.6" - } - ] - }, - "os-extended-volumes:volumes_attached" : [] - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-scale-up-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-scale-up-request.json deleted file mode 100644 index f77e3c0dd..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server-scale-up-request.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "wrs-res:scale": { - "direction": "up", - "resource": cpu - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-request.json deleted file mode 100644 index 8512cab5c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-request.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "server": { - "name": "testvm", - "imageRef": "ec42f67b-1dcd-4f09-aa02-7a426737c20a", - "flavorRef": "2", - "networks": [ - { - "wrs-if:vif_model": "e1000", - "uuid": "06937e9e-0acd-4ad5-a6bb-f82d8896d5e8" - }, - { - "wrs-if:vif_pci_address": "0000:04:12.0", - "uuid": "cdc149b5-9122-4a16-975c-6acb973f49c3" - }, - { - "uuid": "b7adf5a0-3c5a-47f3-b733-8d56d12d2f45" - } - ] - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-response.json deleted file mode 100644 index 721fa7bd2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/api_samples/compute-v2-cgcs-ext/server_add-response.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "server": { - "adminPass": "yjzytFHb7XHc", - "id": "f8f4f3ce-f6e0-4e05-8f79-bf984fdfce45", - "links": [ - { - "href": "http://openstack.example.com/v2/openstack/servers/f8f4f3ce-f6e0-4e05-8f79-bf984fdfce45", - "rel": "self" - }, - { - "href": "http://openstack.example.com/openstack/servers/f8f4f3ce-f6e0-4e05-8f79-bf984fdfce45", - "rel": "bookmark" - } - ] - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/cgcs-ext/compute-v2-cgcs-ext.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/cgcs-ext/compute-v2-cgcs-ext.wadl deleted file mode 100644 index fce2ef5be..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/cgcs-ext/compute-v2-cgcs-ext.wadl +++ /dev/null @@ -1,1039 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - The ID for the tenant or - account in a multi-tenancy - cloud. - - - - - - - - - The alias for the extension - to list. - - - - - - - - - - - - - - - - - - - The ID for the server of - interest to you. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The server group - ID. - - - - - - - - - - - - The ID of the - flavor of interest to you. - - - - - - - - - - - - The key of the - extra-spec of interest to you. - - - - - - - - - - - - - - - - - The ID of the - provider network of interest to you. - - - - - - - - - - - - - - The device id of the - pci device of interest to you. - - - - - - - - - - - - - - The ID for the hypervisor of - interest to you. - - - - - - - - - - - - - - - - - - - - Lists all extensions. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Gets information about a specified extension. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Creates a server. - - - - - - - - A networks object. By default, - the server instance is provisioned with all - isolated networks for the tenant. - Optionally, you can create one or more NICs - on the server. - To provision the server instance with a NIC - for a nova-network network, - specify the UUID in the uuid - attribute in a network - object. - To provision the server instance with a NIC - for a neutron network, specify - the UUID in the port attribute in - a network object. - In Titanium Cloud, to optionally provision the vif model - of the NIC, specify the appropriate value in the - wrs-if:vif_model attribute in the network - object. Valid vif model values are: e1000, - virtio, ne2k_pci, pcnet, - rtl8139, pci-passthrough, - pci-sriov. If not specified, - a vif model of virtio will be used. - To provision the PCI address of the NIC, specify the appropriate - value in the wrs-if:vif_pci_address attribute in - the network object. Valid PCI address values are in - the domain:bus:slot.function format. If not specified, a PCI - address will be chosen by the hypervisor. - You can specify multiple NICs on the - server. - - - - - - - - - - - - - - - - - - - - - Lists details of servers. - - - - - - - - The list of server objects. - - - &serverParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows details for a specified server. - - - - - - - - The requested server object. - - - &serverParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Allows the resources associated with the server - (currently only the number of CPUs) to be scaled up and down without requiring - a restart of the VM. - - - - - - - - Specify the wrs-res:scale action in the request body. - - - - - Direction to scale, "up" or "down". This will result in scaling the - specified resource by one unit in the specified direction. - - - - - - Resource to scale. Currently only "cpu" is supported. - - - - - - - - - - - - - - - - Create Interface - - - - - - - - Requested VIF model. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Creates a server group. - - - - - - - - - - - - - The project or tenant ID which owns this server group. - - - - - The scheduler policy to associate with the server - group. Modified by Titanium Cloud to include the following additional policy: - - - wrs-sg:affinity-hyperthread which will try to put servers - on the same compute node and have servers sharing sibling hyperthread - cores with each other, and only each other. Server Groups using - this policy are restriceted to a maximum of 2 members. - - - - - - - This parameter specifies a dictionary of optional - metadata to be associated with the group. - Additional keys added by Titanium Cloud are: - - - wrs-sg:best_effort (where a value of 0 means - that the scheduler policy will be strictly applied and a value of 1 - means that the server will still be scheduled even if the - policy can't be met). - - - wrs-sg:group_size (where the value is an integer - specifying the max number of servers in the group). - - - - - - - - - - - - - The requested server_group object. - - - &serverGroupsParameters; - - - - - - - - - - - - - Lists server groups. - - - - - - - - The list of server_group objects. - - - &serverGroupsParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows details for a specified server group. - - - - - - - - The requested server_group object. - - - &serverGroupsParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - - Lists the extra-specs or keys for - the specified flavor. - - - - - - - - The list of flavor extra specs. - - - &flavorextraspecListShowParameters; - - - - - - - - - - - - Creates extra-specs or keys for the - specified flavor. - - - - - - - - The list of flavor extra specs. - - - &flavorextraspecListShowParameters; - - - - - - - - - - - - &flavorextraspecListShowParameters; - - - - - - - - - - - - Gets the value of the specified - key. - - - - - - &flavorextraspecListShowParameters; - - - - - - - - - - - - - - - - List the provider networks (not supported). - - - - - - Show the details of a particular provider network. - - - - - - - - The requested provider network object. - - - - - The ID of the provider network. - - - - - The name of the provider network. - - - - - The number of configured PCI devices (PFs). - - - - - The number of used PCI devices (PFs). - - - - - The number of configured SR-IOV PCI devices (VFs). - - - - - The number of used SR-IOV PCI devices (VFs). - - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List PCI device usage statistics. This excludes network interface cards (NICs) - - - - - - - - The name of device. - - - - - The device id of device. - - - - - The vendor id of device. - - - - - The class id of device. - - - - - The number of configured PCI devices (PFs). - - - - - The number of used PCI devices (PFs). - - - - - The number of configured SR-IOV PCI devices (VFs). - - - - - The number of used SR-IOV PCI devices (VFs). - - - - - - - - - - &commonFaults; &getFaults; - - - - - Show the usage details of a particular PCI device. - - - - - - - - The name of device. - - - - - The device id of device. - - - - - The vendor id of device. - - - - - The class id of device. - - - - - The name of the compute host. - - - - - The number of configured PCI devices (PFs). - - - - - The number of used PCI devices (PFs). - - - - - The number of configured SR-IOV PCI devices (VFs). - - - - - The number of used SR-IOV PCI devices (VFs). - - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Shows details for a specified hypervisor. - - - - - - - - lists available memory, in Megabytes, based on page size (4K, 2M, 1G) - on each NUMA node. The sum total must match the number reported in - memory_mb. - - - - - - lists memory currently in use, in Megabytes, based on page size - (4K, 2M, 1G) on each NUMA node. The sum total must match the - number reported in memory_mb_used. - - - - - - lists available vcpus, on each NUMA node. The sum total must - match the quantity reported by vcpus. - - - - - - lists vcpus currently in use, on each NUMA node. The sum total must - match the quantity reported by vcpus_used. - - - - - - - - - - &commonFaults; &getFaults; - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/common.ent deleted file mode 100644 index 7212c98e2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/compute-api/v2/common.ent +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - Indicates namespace of the extension. - - - - - Indicates name of the extension. - - - - - Indicates updated time of the extension. - - - - - Indicates description of the extension. - - - - - Indicates alias of the extension. - - - - - A list of links for the extension. - - - '> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - '> - - - - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - The tenant or project owning the server group. - - - - - A list of policies associated with the server group. - Titanium Cloud added wrs-sg:affinity-hyperthread policy to indicate that only the - members of this server group can share sibling threads with each other. - - - - - Associated metadata key-and-value pairs. - Titanium Cloud added a boolean valued wrs-sg:best_effort metadata key-and-value - pair to indicate whether the server groups policy should be strictly enforced - or not. - Titanium Cloud added an integer valued wrs-sg:group_size metadata key-and-value - pair to indicate the maximum number of members of the server group. - - - '> - - - - - A nics object. Contains the list of NICs provisioned on the server - instance. - Optionally, in Titanium Cloud, each NIC can contain: - - - A wrs-if:vif_model attribute specifying the NICs vif model; - where valid vif model values are: e1000, - virtio, ne2k_pci, pcnet, - rtl8139, pci-passthrough, - pci-sriov. If not specified, - a vif model of virtio is being used. - - - A wrs-if:vif_pci_address attibute specifying the NICs PCI - address. If not specified, the PCI address in the guest is chosen by the - hypervisor and this value is empty. - - - - - - - - An addresses object. Contains - the list of addresses associated with the server instance. - - - - - An wrs-if:nics object. Contains - the list of NIC devices allocated for a VM instance. These - are a VM representation of the neutron port objects associated - to the VM. They are listed in the same order which the network - attachments were specified when the VM was launched. - - - - - This attribute specifies a number of resource details of the VM Server; - the number of numa nodes, the amount of memory and the memory page size, - and the current number of VCPUs. - - - - - List of pci devices associated with the server instance; - indicates the numa node, pci address, type of device, vendor id, - product id. - - - - - This attribute specifies the minimum number of vcpus, current number of - vcpus and maximum number of vcpus of a VM Server. - - - - - This attribute specifies the server group which the - VM Server is in; a null-string if the VM Server is not in a - server group. - - - '> - - - - - - - Indicates whether or not the guest applications running in the virtual - machine make use of the Titanium Cloud Heartbeat client API. - - - - - Indicates whether or not to expose a TPM device to the Guest. - - - - - Indicates the vCPU of the guest virtual machine that will be scheduled - to run on a shared CPU of the host. Note, this can be specified even if - hw:cpu_policy is set to dedicated; allowing the guest application to use - dedicated cores exclusively for its high-load tasks, but use a shared core - for its low-load (e.g. management type) tasks. - - - - - Indicates the minimum number of vCPUs for the virtual machine. The value - must be between one and the number of VCPUs in the flavor of the virtual - machine. If this extra_spec is specified then the server is assumed to support - vCPU scaling. - - - - - See Wind River Titanium Cloud Administration Guide for complete list of - additional flavor extra specs. - - - '> - - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/alarm_summary-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/alarm_summary-response.json deleted file mode 100644 index 45ce6d64f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/alarm_summary-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "alarm_summary": [ - { - "cloud_status": "disabled", - "region_name": "subcloud6", - "warnings": -1, - "minor_alarms": -1, - "critical_alarms": -1, - "major_alarms": -1, - "uuid": "32b9233e-d993-45fb-96eb-5bfa9b1cad5d" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/dcmanager-versions-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/dcmanager-versions-response.json deleted file mode 100644 index 702a57d0b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/dcmanager-versions-response.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "versions": [ - { - "status": "CURRENT", - "updated": "2017-10-2", - "id": "v1.0", - "links": [ - { - "href": "http://192.168.204.2:8119/v1.0/", - "rel": "self" - } - ] - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_abort-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_abort-request.json deleted file mode 100644 index 4fbb4ec77..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_abort-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "action": "abort", -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_action-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_action-response.json deleted file mode 100644 index f7a9d67d5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_action-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "max-parallel-subclouds": 2, - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "subcloud-apply-type": "serial", - "state": "applying", - "stop-on-failure": True, - "type": "patch", - "id": 2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_apply-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_apply-request.json deleted file mode 100644 index 818cea493..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_apply-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "action": "apply", -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_list-response.json deleted file mode 100644 index 46980d281..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_list-response.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "sw-update-options": [ - { - "name": "all clouds default", - "compute-apply-type": "parallel", - "subcloud-id": None, - "updated-at": "2018-02-25 23:34:03.099691", - "created-at": None, - "alarm-restriction-type": "relaxed", - "storage-apply-type": "parallel", - "max-parallel-computes": 3, - "default-instance-action": "migrate", - "id": 1 - }, - { - "name": "subcloud6", - "compute-apply-type": "parallel", - "subcloud-id": 1, - "updated-at": "2018-02-25 23:41:42.877013", - "created-at": "2018-02-25 19:07:20.767609", - "alarm-restriction-type": "relaxed", - "storage-apply-type": "parallel", - "max-parallel-computes": 3, - "default-instance-action": "migrate", - "id": 1 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_show-response.json deleted file mode 100644 index 5d4cb9ed3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_show-response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "subcloud6", - "compute-apply-type": "parallel", - "subcloud-id": 1, - "updated-at": "2018-02-25 23:41:42.877013", - "created-at": "2018-02-25 19:07:20.767609", - "alarm-restriction-type": "relaxed", - "storage-apply-type": "parallel", - "max-parallel-computes": 3, - "default-instance-action": "migrate", - "id": 1 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-request.json deleted file mode 100644 index 225b4dfb0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "max-parallel-computes": 3, - "default-instance-action": "migrate", - "alarm-restriction-type": "relaxed", - "storage-apply-type": "parallel", - "compute-apply-type": "parallel" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-response.json deleted file mode 100644 index b41181890..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_config_update-response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "all clouds default", - "compute-apply-type": "parallel", - "subcloud-id": None, - "updated-at": "2018-02-25 23:34:03.099691", - "created-at": None, - "alarm-restriction-type": "relaxed", - "storage-apply-type": "parallel", - "max-parallel-computes": 3, - "default-instance-action": "migrate", - "id": 1 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-request.json deleted file mode 100644 index 50b2fedf1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-request.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "subcloud-apply-type": "serial", - "type": "patch", - "stop-on-failure": "true", - "max-parallel-subclouds": 2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-response.json deleted file mode 100644 index a6fd5ee4f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_create-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "max-parallel-subclouds": 2, - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "subcloud-apply-type": "serial", - "state": "initial", - "stop-on-failure": True, - "type": "patch", - "id": 2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_show-response.json deleted file mode 100644 index a6fd5ee4f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_show-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "max-parallel-subclouds": 2, - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "subcloud-apply-type": "serial", - "state": "initial", - "stop-on-failure": True, - "type": "patch", - "id": 2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_list-response.json deleted file mode 100644 index 2020d0b69..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_list-response.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "strategy-steps": [ - { - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "state": "initial", - "details": "", - "id": 1, - "cloud": "subcloud6", - "stage": 1 - }, - { - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "state": "initial", - "details": "", - "id": 2, - "cloud": "subcloud7", - "stage": 1 - }, - { - "updated-at": None, - "created-at": "2018-02-25T23:23:53.852473", - "state": "initial", - "details": "", - "id": 3, - "cloud": "subcloud8", - "stage": 1 - }, - ] -} - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_show-response.json deleted file mode 100644 index 5d314c009..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/patch_strategy_steps_show-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "updated-at": None, - "created-at": None, - "state": "initial", - "details": "", - "id": 1, - "cloud": "subcloud6", - "stage": 1 -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-request.json deleted file mode 100644 index e1e67a0a6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "subcloud7", - "management-start-ip": "192.168.205.110", - "systemcontroller-gateway-ip": "192.168.204.102", - "location": "West Ottawa", - "management-subnet": "192.168.205.0/24", - "management-gateway-ip": "192.168.205.1", - "management-end-ip": "192.168.205.160", - "description": "new subcloud" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-response.json deleted file mode 100644 index 01d30d2a8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_add-response.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "description": None, - "management-start-ip": "192.168.205.110", - "created-at": "2018-02-25T22:17:11.845596", - "updated-at": None, - "software-version": "18.01", - "management-state": "unmanaged", - "availability-status": "offline", - "systemcontroller-gateway-ip": "192.168.204.102", - "location": None, - "management-subnet": "192.168.205.0/24", - "management-gateway-ip": "192.168.205.1", - "management-end-ip": "192.168.205.160", - "id": 4, - "name": "subcloud7" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-request.json deleted file mode 100644 index 4ff03c010..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-request.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "oam-gateway-ip": "10.10.20.1", - "oam-interface-mtu": "1500", - "oam-subnet": "10.10.20.0/24", - "management-interface-port": "enp0s3", - "system-mode": "duplex", - "management-interface-mtu": "1500", - "oam-unit-1-ip": "10.10.20.4", - "oam-interface-port": "enp0s8", - "management-vlan": "10", - "pxe-subnet": "192.168.205.0/24", - "oam-unit-0-ip": "10.10.20.3", - "oam-floating-ip": "10.10.20.2" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-response.json deleted file mode 100644 index 8d465ce12..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_generate_config-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "config": "[SYSTEM]\nSYSTEM_MODE=duplex\n[REGION2_PXEBOOT_NETWORK]\nPXEBOOT_CIDR = 192.168.205.0/24\n[MGMT_NETWORK]\nVLAN = 10\nCIDR = 192.168.204.0/24\nGATEWAY = 192.168.204.1\nIP_START_ADDRESS = 192.168.204.50\nIP_END_ADDRESS = 192.168.204.100\nDYNAMIC_ALLOCATION = Y\nLOGICAL_INTERFACE = LOGICAL_INTERFACE_1\n[LOGICAL_INTERFACE_1]\nLAG_INTERFACE = N\nINTERFACE_MTU = 1500\nINTERFACE_PORTS = enp0s3\n[OAM_NETWORK]\nCIDR = 10.10.20.0/24\nGATEWAY = 10.10.20.1\nIP_FLOATING_ADDRESS = 10.10.20.2\nIP_UNIT_0_ADDRESS = 10.10.20.3\nIP_UNIT_1_ADDRESS = 10.10.20.4\nLOGICAL_INTERFACE = LOGICAL_INTERFACE_2\n[LOGICAL_INTERFACE_2]\nLAG_INTERFACE = N\nINTERFACE_MTU = 1500\nINTERFACE_PORTS = enp0s8\n[SHARED_SERVICES]\nSYSTEM_CONTROLLER_SUBNET = 192.168.204.0/24\nSYSTEM_CONTROLLER_FLOATING_ADDRESS = 192.168.204.2\nREGION_NAME = RegionOne\nADMIN_PROJECT_NAME = admin\nADMIN_USER_NAME = admin\nADMIN_PASSWORD = Li69nux*\nKEYSTONE_ADMINURL = http://192.168.204.2:5000/v3\nKEYSTONE_SERVICE_NAME = keystone\nKEYSTONE_SERVICE_TYPE = identity\nGLANCE_SERVICE_NAME = glance\nGLANCE_SERVICE_TYPE = image\nGLANCE_CACHED = True\n[REGION_2_SERVICES]\nREGION_NAME = subcloud6\n[VERSION]\nRELEASE = 18.01\n" -} - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_list-response.json deleted file mode 100644 index 11c93d1a5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_list-response.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "subclouds": [ - { - "description": None, - "management-start-ip": "192.168.204.50", - "sync_status": "unknown", - "updated-at": None, - "software-version": "18.01", - "management-state": "unmanaged", - "availability-status": "offline", - "management-subnet": "192.168.204.0/24", - "systemcontroller-gateway-ip": "192.168.204.101", - "subcloud_id": 1, - "location": None, - "endpoint_sync_status": [ - { - "sync_status": "unknown", - "endpoint_type": "platform" - }, - { - "sync_status": "unknown", - "endpoint_type": "volume" - }, - { - "sync_status": "unknown", - "endpoint_type": "compute" - }, - { - "sync_status": "unknown", - "endpoint_type": "network" - }, - { - "sync_status": "unknown", - "endpoint_type": "patching" - }, - "created-at": u"2018-02-25 19:06:35.208505", - "management-gateway-ip": u"192.168.204.1", - "management-end-ip": u"192.168.204.100", - "id": 1, - "name": "subcloud6" - }, - { - "description": "test subcloud", - "management-start-ip": "192.168.205.50", - "sync_status": "in-sync", - "updated-at": None, - "software-version": "18.01", - "management-state": "managed", - "availability-status": "online", - "management-subnet": "192.168.205.0/24", - "systemcontroller-gateway-ip": "192.168.205.101", - "subcloud_id": 2, - "location": "Ottawa, - "endpoint_sync_status": [ - { - "sync_status": "in-sync", - "endpoint_type": "platform" - }, - { - "sync_status": "in-sync", - "endpoint_type": "volume" - }, - { - "sync_status": "in-sync", - "endpoint_type": "compute" - }, - { - "sync_status": "in-sync", - "endpoint_type": "network" - }, - { - "sync_status": "out-of-sync", - "endpoint_type": "patching" - }, - "created-at": "2018-02-25 19:06:35.208505", - "management-gateway-ip": "192.168.205.1", - "management-end-ip": "192.168.205.100", - "id": 2, - "name": "subcloud7" - }, - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_show-response.json deleted file mode 100644 index 8a0712e55..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_show-response.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "description": "test subcloud", - "management-start-ip": "192.168.204.50", - "created-at": "2018-02-25 19:06:35.208505", - "updated-at": "2018-02-25 21:35:59.771779", - "software-version": "18.01", - "management-state": "unmanaged", - "availability-status": "offline", - "management-subnet": "192.168.204.0/24", - "systemcontroller-gateway-ip": "192.168.204.101", - "location": "ottawa", - "endpoint_sync_status": [ - { - "sync_status": "in-sync", - "endpoint_type": "compute" - }, - { - "sync_status": "in-sync", - "endpoint_type": "network" - }, - { - "sync_status": "in-sync", - "endpoint_type": "patching" - }, - { - "sync_status": "in-sync", - "endpoint_type": "platform" - }, - { - "sync_status": "in-sync", - "endpoint_type": "volume" - } - ], - "management-gateway-ip": "192.168.204.1", - "management-end-ip": "192.168.204.100", - "id": 1, - "name": "subcloud6" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-request.json deleted file mode 100644 index e291b7409..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "description": "new description", - "location": "new location", - "management-state": "managed" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-response.json deleted file mode 100644 index ee42b4c18..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/api_samples/subcloud_update-response.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "description": "new description", - "management-start-ip": "192.168.204.50", - "created-at": "2018-02-25T19:06:35.208505", - "updated-at": "2018-02-25T23:01:17.490090", - "software-version": "18.01", - "management-state": "unmanaged", - "availability-status": "offline", - "systemcontroller-gateway-ip": "192.168.204.101", - "location": "new location", - "management-subnet": "192.168.204.0/24", - "management-gateway-ip": "192.168.204.1", - "management-end-ip": "192.168.204.100", - "id": 1, - "name": "subcloud6" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/common.ent deleted file mode 100644 index d3fb69a12..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/common.ent +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - - - '> - - - - - '> - - - - - - The unique identifier for this object. - - - - - The time when the object was created. - - - - - The time when the object was last updated. - - - '> - - - - - - The name provisioned for the subcloud. - - - - - Management state of the subcloud. - - - - - Availability status of the subcloud. - - - - - Management subnet for subcloud in CIDR format. - - - - - Start of management IP address range for subcloud. - - - - - End of management IP address range for subcloud. - - - - - Systemcontroller gateway IP Address. - - - - - '> - - - - - - The list of endpoint sync statuses. - - - - - The platform sync status of the subcloud. - - - - - The volume sync status of the subcloud. - - - - - The compute sync status of the subcloud. - - - - - The network sync status of the subcloud. - - - - - The patching sync status of the subcloud. - - - - '> - - - - - - - - The unique identifier for this object. - - - - - The name provisioned for the subcloud (synonym for subcloud name). - - - - - The overall alarm status of the cloud. - - - - - The number of warnings for the cloud (-1 when the cloud_status is disabled). - - - - - The number of minor alarms for the cloud (-1 when the cloud_status is disabled). - - - - - The number of critical alarms for the cloud (-1 when the cloud_status is disabled). - - - - - The number of major alarms for the cloud (-1 when the cloud_status is disabled). - - - - '> - - - - - - - The name of the cloud to which the patch options apply. - - - - - Compute host apply type, parallel or serial - - - - - The id of the cloud (will be 0 for the all clouds default). - - - - - The number of compute hosts to patch in parallel. - - - - - Whether to allow patching if subcloud alarms are present or not, strict or relaxed. - - - - - Storage host apply type, parallel or serial. - - - - - How instances should be handled, stop-start or migrate. - - - '> - - - - - - - Subcloud apply type - - - - - The state of patching. - - - - - Whether to stop patching on failure or not. - - - - - Will be set to: patch. - - - - - The number of subclouds to patch in parallel. - - - '> - - - - - - The name of the cloud to which the patch strategy steps apply. - - - - - The state of patching. - - - - - Details about patching. - - - - - The stage of patching. - - - '> - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/dcmanager-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/dcmanager-api-v1.wadl deleted file mode 100644 index 46e244f1d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/dcmanager-api/v1/dcmanager-api-v1.wadl +++ /dev/null @@ -1,841 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - The subcloud reference, name or id. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The subcloud reference, name or id. - - - - - - - - - - - - - - - - - - - - - - - Lists information about all dcmanager API versions. - - - - - - - - - &getFaults; - &commonFaults; - - - - - - - - - - Lists all subclouds. - - - - - - - - The list of subclouds. - - - &commonListShowParameters; - &commonSubcloudListShowParameters; - &subcloudListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - - Shows detailed information about a specific subcloud. - - - - - - &commonListShowParameters; - &commonSubcloudListShowParameters; - &subcloudListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - - Creates a subcloud. - - - - - - - - The name for the subcloud. Must be a unique name. - - - - - The description of the subcloud. - - - - - The location of the subcloud. - - - - - Management subnet for subcloud in CIDR format. Must be unique. - - - - - Start of management IP address range for subcloud. - - - - - End of management IP address range for subcloud. - - - - - Systemcontroller gateway IP Address. - - - - - - - - - - - - - - &commonListShowParameters; - &commonSubcloudListShowParameters; - - - - - - - - &commonFaults; - - - - - - Modifies a specific subcloud. - The attributes of a subcloud which are modifiable: - - description - location - management-state - - - - - - - - - The description of the subcloud. - - - - - The location of the subcloud. - - - - - The management-state of the subcloud, managed or unmanaged. - The subcloud must be online before this can be modified to managed. - - - - - - - - - - - - - - &commonListShowParameters; - &commonSubcloudListShowParameters; - - - - - - - - &commonFaults; - - - - - Deletes a specific subcloud. - - - - - - - - - - - - - Generates the configuration of a specific subcloud. - - - - - - - - PXE boot boot subnet for subcloud in CIDR format. - - - - - VLAN for subcloud management network. - - - - - Subcloud management interface port. - - - - - Subcloud management interface mtu. - - - - - OAM subnet for subcloud in CIDR format. - - - - - OAM gateway IP for subcloud. - - - - - OAM floating IP address for subcloud. - - - - - OAM unit 0 IP address for subcloud. - - - - - OAM unit 1 IP address for subcloud. - - - - - Subcloud OAM interface port. - - - - - Subcloud OAM interface mtu. - - - - - System mode, simplex, duplex, or duplex-direct. - - - - - - - - - - - - - - - - - - - - - - &commonFaults; - - - - - - - - - - - Summarizes alarms from all subclouds. - - - - - - - - The list of alarm summaries. - - - - &alarmListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - - - - - - Lists all patch options. - - - - - - - - The list of patch options. - - - &swUpdateOptionsListShowParameters; - &commonListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - Shows patch options, defaults or per subcloud. Use RegionOne as subcloud for default options which are pre-configured. - - - - - - &swUpdateOptionsListShowParameters; - &commonListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - Updates patch options, defaults or per subcloud. Use RegionOne as subcloud for default options. - - storage-apply-type, - compute-apply-type, - max-parallel-computes, - alarm-restriction-type, - default-instance-action, - - - - - - - - - Storage host apply type, parallel or serial. - - - - - Compute host apply type, parallel or serial. - - - - - The number of compute hosts to patch in parallel. - - - - - Whether to allow patching if subcloud alarms are present or not, - strict or relaxed. - - - - - How instances should be handled, stop-start or migrate. - - - - - - - - - - - - - - &swUpdateOptionsListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; - - - - - Delete per subcloud patch options. - - - - - - - - - - - - - - - - - Shows the details of the patch strategy. - - - - - - &swUpdateStrategyListShowParameters; - &commonListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - Creates the patch strategy. - - subcloud-apply-type, - max-parallel-subclouds, - stop-on-failure, - cloud_name, - - - - - - - - - Subcloud apply type, parallel or serial. - - - - - Maximum number of parallel subclouds. - - - - - Whether stop patching any additional subclouds after a failure or not, True or False. - - - - - Name of a single cloud to patch. - - - - - Must be set to: patch. - - - - - - - - - - - - - - - &swUpdateStrategyListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; - - - - - Deletes the patch strategy from the database. - - - - - - - - - - - - Executes an action on a patch strategy. - - - - - - - - Perform one of the following actions on the patch strategy: - Valid values are: apply, - or abort. - - - - - - - - - - - - - - - &swUpdateStrategyListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; - - - - - - Lists all patch strategy steps for all clouds. - - - - - - - - The list of patch strategy steps. - - - &swUpdateStrategyStepsListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - - - - Shows the details of patch strategy steps for a particular cloud. - - - - - - &swUpdateStrategyStepsListShowParameters; - &commonListShowParameters; - - - - - - - - &getFaults; - &commonFaults; - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm-response.json deleted file mode 100755 index 7749a14b0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm-response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "alarm_state": "set", - "service_affecting": "True", - "proposed_repair_action": "contact next level of support", - "alarm_type": "processing-error", - "severity": "minor", - "created_at": "2014-09-23T00:38:16.797155+00:00", - "entity_type_id": "host", - "probable_cause": "key-expired", - "updated_at": "2014-09-24T00:38:17.403135+00:00", - "alarm_id": "400.003", - "entity_instance_id": "system=big_lab.host=controller-0", - "suppression": "False", - "timestamp": "2014-09-24T00:38:17.400169+00:00", - "uuid": "2a88acd3-e9eb-432e-bc0a-4276e3537a40", - "reason_text": "evaluation license key will exprire on 31-dec-2014", - "mgmt_affecting": "critical" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-request.json deleted file mode 100644 index 306e7969d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-request.json +++ /dev/null @@ -1 +0,0 @@ -http://192.168.204.2:18002/v1/alarms?q.field=severity&q.op=eq&q.type=&q.value=major&include_suppress=True diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-response.json deleted file mode 100755 index b2d425b51..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_list-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "ialarms":[ - { - "severity":"major", - "timestamp":"2016-05-12T12:11:10.405609", - "uuid":"25d28c97-70e4-45c7-a896-ba8e71a81f26", - "alarm_id":"400.002", - "entity_instance_id":"service_domain=controller.service_group=oam-services", - "suppression_status":"suppressed", - "reason_text":"Service group oam-services loss of redundancy; expected 1 standby member but no standby members available", - "mgmt_affecting": "warning" - }, - { - "severity":"major", - "timestamp":"2016-05-12T12:08:12.850730", - "uuid":"63c94239-2d16-4a30-a910-60198de1c0a8", - "alarm_id":"200.001", - "entity_instance_id":"host=controller-1", - "suppression_status":"unsuppressed", - "reason_text":"controller-1 was administratively locked to take it out-of-service.", - "mgmt_affecting": "warning" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_summary-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_summary-response.json deleted file mode 100644 index 5ff4ba7f8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/alarm_summary-response.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "status": "OK", - "major": 0, - "warnings": 0, - "system_uuid": "6a314f63-4969-46f8-9221-b69b6b50424c", - "critical": 0, - "minor": 0 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-request.json deleted file mode 100644 index aad8f464b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-request.json +++ /dev/null @@ -1 +0,0 @@ -http://192.168.204.2:18002/v1/event_log?q.field=start&q.field=end&q.op=eq&q.op=eq&q.type=&q.type=&q.value=2014-11-28T16%3A56%3A44&q.value=2014-11-28T16%3A56%3A45&limit=2 diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-response.json deleted file mode 100644 index 6c6458ca5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_list-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "event_log": [ - { - "severity": "critical", - "timestamp": "2014-11-28T16:56:44.814747", - "uuid": "67f88971-d769-450e-9e8a-126dd8585187", - "event_log_id": "400.005", - "entity_instance_id": "host=controller-0.network=mgmt", - "reason_text": "Communication failure detected with peer over port eth1 on host controller-0", - "state": "log" - }, - { - "severity": "major", - "timestamp": "2014-11-28T16:56:44.808965", - "uuid": "1a259ab9-8ea2-4177-8053-ad7596509c66", - "log_id": "400.002", - "entity_instance_id": "service_domain=controller.service_group=cloud-services", - "reason_text": "Service group cloud-services loss of redundancy; expected 1 standby member but no standby members available", - "state": "set" - }], - "next": "http://192.168.204.2:6385/v1/event_log?sort_key=timestamp&sort_dir=desc&limit=2&marker=1a259ab9-8ea2-4177-8053-ad7596509c66" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_show-response.json deleted file mode 100644 index 9a53573f6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_log_show-response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "state": "set", - "service_affecting": "True", - "proposed_repair_action": - "Contact next level of support.", - "event_log_type": "processing-error", - "severity": "critical", - "created_at": "2014-11-28T20:00:56.116251+00:00", - "entity_type_id": "service_domain.service_group.host", - "probable_cause": "underlying-resource-unavailable", - "updated_at": null, - "event_log_id": "400.001", - "entity_instance_id":"system=1bcd6f11-8152-45f7-9d93-0960e1887afe.service_domain=controller.service_group=patching-services.host=controller-0", - "suppression": "True", - "timestamp": "2014-11-28T20:00:56.114060+00:00", - "uuid": "8701d806-cae7-4f34-be8d-17fd11a0d25d", - "reason_text": "Service group failure; patch-alarm-manager(disabled, failed)." -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-request.json deleted file mode 100644 index 82603d52b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-request.json +++ /dev/null @@ -1 +0,0 @@ -http://192.168.204.2:18002/v1/event_suppression diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-response.json deleted file mode 100644 index e36358047..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_list-response.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "event_suppression":[ - { - "alarm_id":"100.101", - "suppression_status":"unsuppressed", - "description":"Platform CPU threshold exceeded; threshold x%, actual y% .", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/event_suppression/494af09d-6810-4cf2-a57b-528f570f0511", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/event_suppression/494af09d-6810-4cf2-a57b-528f570f0511", - "rel":"bookmark" - } - ], - "uuid":"494af09d-6810-4cf2-a57b-528f570f0511" - }, - { - "alarm_id":"100.102", - "suppression_status":"unsuppressed", - "description":"VSwitch CPU threshold exceeded; threshold x%, actual y% .", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/event_suppression/b140b479-10a3-430f-9aba-a9a46b3fc03f", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/event_suppression/b140b479-10a3-430f-9aba-a9a46b3fc03f", - "rel":"bookmark" - } - ], - "uuid":"b140b479-10a3-430f-9aba-a9a46b3fc03f" - }, - - - ... - - - { - "alarm_id":"900.003", - "suppression_status":"suppressed", - "description":"Patch host install failure.", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/event_suppression/72285cc6-07ad-47ef-8b39-2e4482895533", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/event_suppression/72285cc6-07ad-47ef-8b39-2e4482895533", - "rel":"bookmark" - } - ], - "uuid":"72285cc6-07ad-47ef-8b39-2e4482895533" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-request.json deleted file mode 100644 index 89c694507..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/suppression_status", - "value":"unsuppressed", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-response.json deleted file mode 100644 index 4346262d4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/event_suppression_modify-response.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "description":"Service group loss of redundancy; expected standby member but only standby member available.ORService group loss of redundancy; expected standby member but only standby member available.ORService group loss of redu ...", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/event_suppression/eb54eb1a-6314-4818-8fe7-83bdb6fe5b80", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/event_suppression/eb54eb1a-6314-4818-8fe7-83bdb6fe5b80", - "rel":"bookmark" - } - ], - "created_at":"2016-05-09T11:25:22.436412+00:00", - "updated_at":"2016-05-12T12:38:51.524402+00:00", - "alarm_id":"400.002", - "suppression_status":"unsuppressed", - "id":37, - "uuid":"eb54eb1a-6314-4818-8fe7-83bdb6fe5b80" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/fm-versions-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/fm-versions-response.json deleted file mode 100644 index d5d018c38..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/fm-versions-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "default_version": { - "id": "v1", - "links": [ - { - "href": "http://192.168.204.2:18002/v1/", - "rel": "self" - } - ] - }, - "versions": [ - { - "id": "v1", - "links": [ - { - "href": "http://192.168.204.2:18002/v1/", - "rel": "self" - } - ] - } - ], - "name": "Fault Management API", - "description": "Fault Management is an OpenStack project which provides REST API services for alarms and logs." -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/version-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/version-get-response.json deleted file mode 100644 index d5d018c38..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/version-get-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "default_version": { - "id": "v1", - "links": [ - { - "href": "http://192.168.204.2:18002/v1/", - "rel": "self" - } - ] - }, - "versions": [ - { - "id": "v1", - "links": [ - { - "href": "http://192.168.204.2:18002/v1/", - "rel": "self" - } - ] - } - ], - "name": "Fault Management API", - "description": "Fault Management is an OpenStack project which provides REST API services for alarms and logs." -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/versionv1-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/versionv1-get-response.json deleted file mode 100644 index 1746a45c2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/api_samples/versionv1-get-response.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "media_types": [ - { - "base": "application/json", - "type": "application/vnd.openstack.fm.v1+json" - } - ], - "links": [ - { - "href": "http://192.168.204.2:18002/v1/", - "rel": "self" - }, - { - "href": "http://www.windriver.com/developer/fm/dev/api-spec-v1.html", - "type": "text/html", - "rel": "describedby" - } - ], - "event_log": [ - { - "href": "http://192.168.204.2:18002/v1/event_log/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:18002/event_log/", - "rel": "bookmark" - } - ], - "alarms": [ - { - "href": "http://192.168.204.2:18002/v1/alarms/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:18002/alarms/", - "rel": "bookmark" - } - ], - "event_suppression": [ - { - "href": "http://192.168.204.2:18002/v1/event_suppression/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:18002/event_suppression/", - "rel": "bookmark" - } - ], - "id": "v1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/common.ent deleted file mode 100644 index 382e7d00d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/common.ent +++ /dev/null @@ -1,436 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - - The universally unique identifier for this object. - - - - - For convenience, resources contain links to themselves. - This allows a client to easily obtain rather than construct - resource URIs. The following types of link relations are - associated with resources: a self link containing a versioned - link to the resource, and a bookmark link containing a permanent - link to a resource that is appropriate for long term storage. - - - - - The time when the object was created. - - - - - The time when the object was last updated. - - - '> - - - - - - - The alarm ID; each type of alarm has a unique ID. Note - the alarm_id and the entity_instance_id uniquely identify - an alarm instance. - - - - - The instance of the object raising alarm. A . separated list - of sub-entity-type=instance-value pairs, representing the containment - structure of the overall entity instance. Note - the alarm_id and the entity_instance_id uniquely identify - an alarm instance. - - - - - The text description of the alarm. - - - - - The severity of the alarm; critical, - major, minor, or warning. - - - - - The time in UTC at which the alarm has last been updated. - - - - - The unique identifier of the alarm. - - - '> - - - - The state of the alarm; set or clear - - - - - Indicates whether the alarm affects the service. - - - - - The proposed action to clear the alarm. - - - - - The type of the alarm. - - - - - The type of the object raising the alarm. A . separated list - of sub-entity-type, representing the containment structure of the - overall entity type. - - - - - The probable cause of the alarm. - - - - - Indicates whether suppression of the specific alarm is allowed. - - - '> - - - - UUID of the system. - - - - - Overall system status based on alarms present; critical, - degraded, or OK. - - - - - Count of critical alarms on the system - - - - - Count of major alarms on the system - - - - - Count of minor alarms on the system - - - - - Count of warnings on the system - - - '> - - - - - - - The event log ID; each type of event log has a unique ID. Note - the event_log_id and the entity_instance_id uniquely identify - an event log instance. - - - - - The state of the event; set, clear or log - - - - - The instance of the object generating the event log. A . separated list - of sub-entity-type=instance-value pairs, representing the containment - structure of the overall entity instance. Note - the event_log_id and the entity_instance_id uniquely identify - an event log instance. - - - - - The text description of the event log. - - - - - The severity of the event log; critical, - major, minor or warning. - - - - - The time in UTC at which the event log has last been updated. - - - - - The unique identifier of the event log. - - - - - The next attribute is the request to use to get the next n - items. It is used to paginate the event log list. - - - '> - - - - The state of the event; set, clear or log - - - - - Indicates whether the event affects the service. - - - - - The proposed action to clear the event. - - - - - The type of the event. - - - - - The type of the object raising the alarm. A . separated list - of sub-entity-type, representing the containment structure of the - overall entity type. - - - - - The probable cause of the event. - - - - - Indicates whether suppression of the specific event is allowed. - - - '> - - - - - - - The alarm ID type (event ID type) that can be suppressed or unsuppressed. - - - - - - The text description of the event type. - - - - - The suppression status for the event ID type; suppressed or unsuppressed - - - '> - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/fm-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/fm-api-v1.wadl deleted file mode 100644 index 07689fe08..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/fm-api/v1/fm-api-v1.wadl +++ /dev/null @@ -1,469 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing active alarm. - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an event log. - - - - - - - - - - - - - - - - - The unique identifier of an event suppression. - - - - - - - - - - - - - - - - API version details. - - - - - - - - - - - - - - - - - Lists information about all Fault Management API versions. - - - - - - - - - &commonFaults; &getFaults; - - - - - Shows details for Fault Management API v1. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - - - - - - Lists all active alarms based on specified query. - The supported query options are alarm_id, entity_type_id, entity_instance_id, - severity and alarm_type. - - - - - - - - This optional parameter when set to true (include_suppress=true) specifies - to include suppressed alarms in output. - - - - - - - - - - - - - - - - The list of active alarms based on the specified query. - - - &alarmListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific alarm. - - - - - - - &alarmListShowParameters; - &alarmDetailShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Deletes a specific alarm. - NOTE Typically this command should NOT be used. I.e typically - alarms will be and should be cleared by the system - when the alarm condition clears. This command is only provided - in the event that the alarm has cleared but for some reason the - system has not removed the alarm. - - - - - - - - - - - - - Summarize all active alarms by severity. - - - - - - - - This optional parameter when set to true (include_suppress=true) specifies - to include suppressed alarms in the summations (default false). - - - - - - - - - &alarmSummaryShowParameters; - - - - - - - - &commonFaults; - - - - - - - - - - - - - Lists all event logs (historical alarms and customer logs) based on specified query. The logs - are returned in reverse chronological order. - The supported query options are event_log_id, entity_type_id, entity_instance_id, - severity, event_log_type, start and end. - - - - - - - - This parameter specifies filter rules for the logs to - be returned. - - - - - This parameter specifies the maximum number of event logs to - be returned. - - - - - This optional parameter when set to true (alarms=true) specifies - that only alarm event log records should be returned. - - - - - This optional parameter when set to true (logs=true) specifies - that only customer log records should be returned. - - - - - This optional parameter when set to true (include_suppress=true) specifies - to include suppressed alarms in output. - - - - - - - - - - - - - - - - The list of events log based on the specified query. - - - &eventLogListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows information about a specific event log. - - - - - - - &eventLogListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - - - - Lists suppressed event id's. - - - - - - - - - The list of suppressed event types. - - - &EventSuppressionListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies the value of an event suppression. - - - - - - - - The suppression status of an event suppression; suppressed or unsuppressed - - - - - - - - - - - - - - - - URIs to the modified event suppression. - - - - &EventSuppressionListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-request.json deleted file mode 100644 index 2583a77e5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "hw_wrs_live_migration_timeout":"400", - "name":"cirros", - "container_format":"bare", - "cache_raw":"True", - "visibility":"public", - "disk_format":"qcow2", - "sw_wrs_auto_recovery":"False", - "hw_wrs_live_migration_max_downtime":"350" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-response.json deleted file mode 100644 index ac743d291..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_add-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "hw_wrs_live_migration_timeout":"400", - "disk_format":"qcow2", - "min_ram":0, - "updated_at":"2016-10-25T12:02:09Z", - "file":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67/file", - "owner":"b27359bcdb3e424db43a3e2255777f37", - "id":"9d34ff07-6f66-4107-9363-e38b0b559a67", - "size":null, - "self":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67", - "cache_raw":"True", - "container_format":"bare", - "schema":"/v2/schemas/image", - "status":"queued", - "tags":[ - - ], - "visibility":"public", - "min_disk":0, - "sw_wrs_auto_recovery":"False", - "virtual_size":null, - "hw_wrs_live_migration_max_downtime":"350", - "name":"cirros", - "checksum":null, - "created_at":"2016-10-25T12:02:09Z", - "protected":false -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_list-response.json deleted file mode 100644 index abd6c7f22..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_list-response.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "images":[ - { - "status":"active", - "virtual_size":null, - "name":"sample-guest", - "tags":[ - - ], - "container_format":"bare", - "created_at":"2016-10-24T22:50:17Z", - "size":688914432, - "disk_format":"raw", - "updated_at":"2016-10-24T22:50:26Z", - "visibility":"public", - "self":"/v2/images/ac22a842-27c6-40a5-8475-f15f12e94202", - "min_disk":0, - "protected":false, - "id":"ac22a842-27c6-40a5-8475-f15f12e94202", - "file":"/v2/images/ac22a842-27c6-40a5-8475-f15f12e94202/file", - "checksum":"29514837240a4bb80df0e2362644ae17", - "owner":"b27359bcdb3e424db43a3e2255777f37", - "direct_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/ac22a842-27c6-40a5-8475-f15f12e94202/snap", - "min_ram":0, - "store":"rbd", - "schema":"/v2/schemas/image" - }, - { - "hw_wrs_live_migration_timeout":"400", - "cache_raw":"True", - "min_ram":0, - "updated_at":"2016-10-25T12:06:19Z", - "file":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67/file", - "owner":"b27359bcdb3e424db43a3e2255777f37", - "id":"9d34ff07-6f66-4107-9363-e38b0b559a67", - "size":13287936, - "self":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67", - "disk_format":"qcow2", - "cache_raw_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67_raw/snap", - "container_format":"bare", - "direct_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67/snap", - "store":"rbd", - "schema":"/v2/schemas/image", - "status":"active", - "cache_raw_size":"41126400", - "cache_raw_status":"Cached", - "tags":[ - - ], - "visibility":"public", - "min_disk":0, - "sw_wrs_auto_recovery":"False", - "virtual_size":null, - "hw_wrs_live_migration_max_downtime":"350", - "name":"cirros", - "checksum":"ee1eca47dc88f4879d8a229cc70a07c6", - "created_at":"2016-10-25T12:02:09Z", - "protected":false - } - ], - "schema":"/v2/schemas/images", - "first":"/v2/images?sort_key=name&sort_dir=asc&limit=20" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-request.json deleted file mode 100644 index 6cc778150..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-request.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "path":"/hw_wrs_live_migration_timeout", - "value":"500", - "op":"replace" - }, - { - "path":"/sw_wrs_auto_recovery", - "value":"True", - "op":"replace" - }, - { - "path":"/hw_wrs_live_migration_max_downtime", - "value":"300", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-response.json deleted file mode 100644 index e91f7392a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_modify-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "hw_wrs_live_migration_timeout":"500", - "cache_raw":"True", - "min_ram":0, - "updated_at":"2016-10-25T12:15:41Z", - "file":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67/file", - "owner":"b27359bcdb3e424db43a3e2255777f37", - "id":"9d34ff07-6f66-4107-9363-e38b0b559a67", - "size":13287936, - "self":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67", - "disk_format":"qcow2", - "cache_raw_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67_raw/snap", - "container_format":"bare", - "direct_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67/snap", - "store":"rbd", - "schema":"/v2/schemas/image", - "status":"active", - "cache_raw_size":"41126400", - "cache_raw_status":"Cached", - "tags":[ - - ], - "visibility":"public", - "min_disk":0, - "sw_wrs_auto_recovery":"True", - "virtual_size":null, - "hw_wrs_live_migration_max_downtime":"300", - "name":"cirros", - "checksum":"ee1eca47dc88f4879d8a229cc70a07c6", - "created_at":"2016-10-25T12:02:09Z", - "protected":false -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_show-response.json deleted file mode 100644 index ad6f6cbbd..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/api_samples/image-v2-cgcs-ext/image_show-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "hw_wrs_live_migration_timeout":"400", - "cache_raw":"True", - "min_ram":0, - "updated_at":"2016-10-25T12:06:19Z", - "file":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67/file", - "owner":"b27359bcdb3e424db43a3e2255777f37", - "id":"9d34ff07-6f66-4107-9363-e38b0b559a67", - "size":13287936, - "self":"/v2/images/9d34ff07-6f66-4107-9363-e38b0b559a67", - "disk_format":"qcow2", - "cache_raw_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67_raw/snap", - "container_format":"bare", - "direct_url":"rbd://840f16bc-3238-4adb-8700-6b9876c23462/images/9d34ff07-6f66-4107-9363-e38b0b559a67/snap", - "store":"rbd", - "schema":"/v2/schemas/image", - "status":"active", - "cache_raw_size":"41126400", - "cache_raw_status":"Cached", - "tags":[ - - ], - "visibility":"public", - "min_disk":0, - "sw_wrs_auto_recovery":"False", - "virtual_size":null, - "hw_wrs_live_migration_max_downtime":"350", - "name":"cirros", - "checksum":"ee1eca47dc88f4879d8a229cc70a07c6", - "created_at":"2016-10-25T12:02:09Z", - "protected":false -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/cgcs-ext/image-v2-cgcs-ext.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/cgcs-ext/image-v2-cgcs-ext.wadl deleted file mode 100644 index bee5e2b03..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/cgcs-ext/image-v2-cgcs-ext.wadl +++ /dev/null @@ -1,204 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - The name for the image. - - - - - - - - - - - - - - - - - Lists all images. - &standardApiDescription; - - - - - - &imageListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows detailed information about a specific image. - &standardApiDescription; - - - - - - &imageListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Creates an image. - &standardApiDescription; - - - - - - - - On systems using Ceph storage, boot image files must be - converted to RAW format before they can be used to create - volumes. You can accelerate volume creation in Titanium Cloud - (and therefore instance launch time) by caching the RAW images - as they are created. The cached images are maintained in the - Glance image storage space and used for volume creation, eliminating - conversion time. The default behaviour is to NOT cache the raw format. - - - - - Indicates whether auto recovery of failed virutal machine instances is enabled or not. - The default is True. - - - - - Indicates the number of seconds to wait for a live migration to complete for - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the timeout value is provisioned in both the flavor - and the image, the smaller value is used. The default is 800 seconds. The - minimum timeout is 120 seconds and the maximum timeout value is 800 seconds. - To disable the live migration timeout feature, set this value to 0. - - - - - Indicates the maximum amoutn of downtime to tolerate during a live migration of - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the max downtime value is provisioned in both the flavor - and the image, the value from the flavor overrides the value from the image. The default - is 500 milliseconds. The minimum timer value is 100 milliseconds. - - - - - - - - - - - - - - &imageListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies a specific image. - &standardApiDescription; - - - - - - &imageListUpdateParameters; - - - - - - - - - - - - &imageListShowParameters; - - - - - - - - &postPutFaults; - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/common.ent deleted file mode 100644 index 5e1c27898..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/image-api/v2/common.ent +++ /dev/null @@ -1,240 +0,0 @@ - - - This is an existing OpenStack API. The documentation that follows lists only the fields that are new or modified. For a detailed description of existing and unmodified fields please refer to the standard OpenStack API documentation. NOTE that the extensions listed here are additional properties which are supported in the Image API and implemented in a Stack-specific manner. - '> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - '> - - - - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - Indicates namespace of the extension. - - - - - Indicates name of the extension. - - - - - Indicates updated time of the extension. - - - - - Indicates description of the extension. - - - - - Indicates alias of the extension. - - - - - A list of links for the extension. - - - '> - - - - - - On systems using Ceph storage, boot image files must be - converted to RAW format before they can be used to create - volumes. You can accelerate volume creation in Titanium Cloud - (and therefore instance launch time) by caching the RAW images - as they are created. The cached images are maintained in the - Glance image storage space and used for volume creation, eliminating - conversion time. The default behaviour is to NOT cache the raw format. - - - - - Indicates which Glance backend the image is stored in; either file for - the Controller Filesystem or rbd for the ceph backend. - - - - - Indicates whether auto recovery of failed virutal machine instances is enabled or not. - The default is True. - - - - - Indicates the number of seconds to wait for a live migration to complete for - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the timeout value is provisioned in both the flavor - and the image, the smaller value is used. The default is 800 seconds. The - minimum timeout is 120 seconds and the maximum timeout value is 800 seconds. - To disable the live migration timeout feature, set this value to 0. - - - - - Indicates the maximum amoutn of downtime to tolerate during a live migration of - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the max downtime value is provisioned in both the flavor - and the image, the value from the flavor overrides the value from the image. The default - is 500 milliseconds. The minimum timer value is 100 milliseconds. - - - '> - - - Indicates whether auto recovery of failed virutal machine instances is enabled or not. - The default is True. - - - - - Indicates the number of seconds to wait for a live migration to complete for - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the timeout value is provisioned in both the flavor - and the image, the smaller value is used. The default is 800 seconds. The - minimum timeout is 120 seconds and the maximum timeout value is 800 seconds. - To disable the live migration timeout feature, set this value to 0. - - - - - Indicates the maximum amoutn of downtime to tolerate during a live migration of - a VM created with this image. Note that this can be specified as an extraspec - of the flavor as well. If the max downtime value is provisioned in both the flavor - and the image, the value from the flavor overrides the value from the image. The default - is 500 milliseconds. The minimum timer value is 100 milliseconds. - - - '> - - - - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_get-response.json deleted file mode 100644 index 00585b447..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_get-response.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "extensions" : { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-provider/v1", - "name" : "wrs-provider-network", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Provider Network Extensions.", - "alias" : "wrs-provider", - "links" : [] - } -} - -OR - -{ - "extensions" : { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-tenant/v1", - "name" : "wrs-tenant-settings", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Tenant Network Settings Extensions.", - "alias" : "wrs-tenant", - "links" : [] - } -} - -OR - -{ - "extensions" : { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-tm/v1", - "name" : "wrs-traffic-management", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Traffic Management Extensions.", - "alias" : "wrs-tm", - "links" : [] - } -} - -OR - -{ - "extensions" : { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-net/v1", - "name" : "wrs-tenant-network", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Tenant Network Extensions.", - "alias" : "wrs-net", - "links" : [] - } -} - -OR - -{ - "extensions" : { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-binding/v1", - "name" : "wrs-port-binding", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Port Binding Extensions.", - "alias" : "wrs-binding", - "links" : [] - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_list-response.json deleted file mode 100644 index 754cd04cc..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/extension_list-response.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "extensions" : [ - ... - { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-provider/v1", - "name" : "wrs-provider-network", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Provider Network Extensions.", - "alias" : "wrs-provider", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-tenant/v1", - "name" : "wrs-tenant-settings", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Tenant Network Settings Extensions.", - "alias" : "wrs-tenant", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-tm/v1", - "name" : "wrs-traffic-management", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Traffic Management Extensions.", - "alias" : "wrs-tm", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-net/v1", - "name" : "wrs-tenant-network", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Tenant Network Extensions.", - "alias" : "wrs-net", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.org/tis/ext/wrs-binding/v1", - "name" : "wrs-port-binding", - "updated" : "2014-10-01T12:00:00-00:00", - "description" : "WRS Port Binding Extensions.", - "alias" : "wrs-binding", - "links" : [] - }, - ... - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_request.json deleted file mode 100644 index 6a67f7535..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "host": { - "availability": "down", - "id": "b1165275-b0dd-4f01-bbb7-988cdede05ab", - "name": "compute-99" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_response.json deleted file mode 100644 index 9897a9f48..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-create_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "host": { - "agents": [], - "availability": "down", - "created_at": "2014-10-01 17:02:03.974462", - "id": "b1165275-b0dd-4f01-bbb7-988cdede05ab", - "name": "compute-99", - "ports": 0, - "routers": 0, - "subnets": 0, - "updated_at": null - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-delete_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-delete_admin_response.json deleted file mode 100644 index 0967ef424..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-delete_admin_response.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-list_admin_response.json deleted file mode 100644 index 220ea18ae..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-list_admin_response.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "hosts": [ - { - "agents": [ - { - "id": "894d7327-ef14-468d-9037-82f7209a4165", - "type": "Open vSwitch agent" - }, - { - "id": "b3aa7556-0f13-4822-9707-d42b5bca114d", - "type": "L3 agent" - }, - { - "id": "7305ce69-c576-4e16-b880-57dec9fa2bb4", - "type": "DHCP agent" - } - ], - "availability": "up", - "created_at": "2014-10-01 13:11:22.590178", - "id": "6c7153a8-fdbb-4707-b8ab-5243ef9b0072", - "name": "compute-0", - "ports": 6, - "routers": 2, - "subnets": 2, - "updated_at": "2014-10-01 15:30:28.038701" - }, - { - "agents": [ - { - "id": "91eccf13-ae92-4dcd-b36d-4a52c2b8348f", - "type": "DHCP agent" - }, - { - "id": "53b84157-5761-4480-8b14-10abc22e3c65", - "type": "Open vSwitch agent" - }, - { - "id": "3c28bc57-ae08-428f-8387-1e4b74376220", - "type": "L3 agent" - } - ], - "availability": "up", - "created_at": "2014-10-01 13:11:51.881858", - "id": "4f31a85c-3066-4a94-b1b7-cd736897fb6a", - "name": "compute-1", - "ports": 3, - "routers": 0, - "subnets": 0, - "updated_at": "2014-10-01 15:47:11.208369" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-show_admin_response.json deleted file mode 100644 index 7dae9e51a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-show_admin_response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "host": { - "agents": [ - { - "id": "b3aa7556-0f13-4822-9707-d42b5bca114d", - "type": "L3 agent" - }, - { - "id": "7305ce69-c576-4e16-b880-57dec9fa2bb4", - "type": "DHCP agent" - }, - { - "id": "894d7327-ef14-468d-9037-82f7209a4165", - "type": "Open vSwitch agent" - } - ], - "availability": "up", - "created_at": "2014-10-01 13:11:22.590178", - "id": "6c7153a8-fdbb-4707-b8ab-5243ef9b0072", - "name": "compute-0", - "ports": 6, - "routers": 2, - "subnets": 2, - "updated_at": "2014-10-01 15:30:28.038701" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_request.json deleted file mode 100644 index a504c7608..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "host": { - "availability": "up" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_response.json deleted file mode 100644 index 870245b83..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/host-update_admin_response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "host": { - "agents": [ - { - "id": "894d7327-ef14-468d-9037-82f7209a4165", - "type": "Open vSwitch agent" - }, - { - "id": "b3aa7556-0f13-4822-9707-d42b5bca114d", - "type": "L3 agent" - }, - { - "id": "7305ce69-c576-4e16-b880-57dec9fa2bb4", - "type": "DHCP agent" - } - ], - "availability": "up", - "created_at": "2014-10-01 13:11:22.590178", - "id": "6c7153a8-fdbb-4707-b8ab-5243ef9b0072", - "name": "compute-0", - "ports": 6, - "routers": 2, - "subnets": 2, - "updated_at": "2014-10-01 16:47:56.529831" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_request.json deleted file mode 100644 index cafb65093..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_request.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "network": { - "admin_state_up": true, - "name": "test-net-0", - "wrs-tm:qos": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10", - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_response.json deleted file mode 100644 index 497a0e883..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-create_admin_response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "network": { - "admin_state_up": true, - "id": "e815237e-9255-497f-a9b6-8c000d6e3224", - "name": "test-net-0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 602, - "wrs-tm:qos": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "shared": false, - "status": "ACTIVE", - "subnets": [], - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list-on-providernet_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list-on-providernet_admin_response.json deleted file mode 100644 index e1f3aa064..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list-on-providernet_admin_response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "networks": [ - { - "id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "name": "tenant1-net0", - "providernet_type": "vlan", - "segmentation_id": 601, - "vlan_id": 0 - }, - { - "id": "7e5ed852-a990-4fc5-89a2-b17093ca1982", - "name": "internal0-net0", - "providernet_type": "vlan", - "segmentation_id": 700, - "vlan_id": 0 - }, - { - "id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "name": "external-net0", - "providernet_type": "vlan", - "segmentation_id": 10, - "vlan_id": 0 - }, - { - "id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "name": "tenant1-mgmt-net", - "providernet_type": "vlan", - "segmentation_id": 600, - "vlan_id": 0 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list_admin_response.json deleted file mode 100644 index 3f42c8819..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-list_admin_response.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "networks": [ - { - "admin_state_up": true, - "id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "name": "external-net0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 10, - "wrs-tm:qos": "d28e697c-c290-4895-b57c-ac7d38db9003", - "router:external": true, - "shared": true, - "status": "ACTIVE", - "subnets": [ - "b282ef86-2584-4a02-9b58-69d6233952a2" - ], - "tenant_id": "206f147dcf72421fa6829e33bfb34637" - }, - { - "admin_state_up": true, - "id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "name": "tenant1-mgmt-net", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 600, - "wrs-tm:qos": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "router:external": false, - "shared": false, - "status": "ACTIVE", - "subnets": [ - "34efd537-7a72-4fcd-b837-9874caf34117" - ], - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "id": "9472a8ab-9205-43ef-a460-5f01f031791a", - "name": "tenant2-mgmt-net", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data1", - "provider:segmentation_id": 616, - "wrs-tm:qos": "62970a9a-b093-4747-92dd-9de25616036a", - "router:external": false, - "shared": false, - "status": "ACTIVE", - "subnets": [ - "9aa900f4-522b-4b83-ba93-57f7d92da5d5" - ], - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - }, - { - "admin_state_up": true, - "id": "7e5ed852-a990-4fc5-89a2-b17093ca1982", - "name": "internal0-net0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 700, - "router:external": false, - "shared": true, - "status": "ACTIVE", - "subnets": [ - "ad791a3e-33cf-4d8d-b80f-91c87f97745e" - ], - "tenant_id": "206f147dcf72421fa6829e33bfb34637", - "vlan_transparent": false, - }, - { - "admin_state_up": true, - "id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "name": "tenant1-net0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 601, - "router:external": false, - "shared": false, - "status": "ACTIVE", - "subnets": [ - "bc269028-1862-4dde-ba2e-62a67d1af4e4", - "837aebc9-6c78-43e9-8124-168ba16adbc7" - ], - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - "vlan_transparent": false, - }, - { - "admin_state_up": true, - "id": "7a77e654-794a-4e19-9679-ac2733e19876", - "name": "tenant2-net0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data1", - "provider:segmentation_id": 617, - "router:external": false, - "shared": false, - "status": "ACTIVE", - "subnets": [ - "985806f5-9fd7-4d47-9da6-cb0c1316e63d" - ], - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - "vlan_transparent": false, - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-show_admin_response.json deleted file mode 100644 index 97c7433fc..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/net-show_admin_response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "network": { - "admin_state_up": true, - "id": "e87e7438-8a07-4e82-a472-862bb7fa93ac", - "name": "test-net-0", - "mtu": 1500, - "provider:network_type": "vlan", - "provider:physical_network": "group0-data0", - "provider:segmentation_id": 602, - "wrs-tm:qos": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "router:external": false, - "shared": false, - "status": "ACTIVE", - "subnets": [], - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-list_admin_response.json deleted file mode 100644 index 1a3877001..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-list_admin_response.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "ports": [ - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "ce58c529-ba73-47f7-a409-a438ceced112", - "device_owner": "network:router_interface", - "fixed_ips": [ - { - "ip_address": "192.168.201.1", - "subnet_id": "9aa900f4-522b-4b83-ba93-57f7d92da5d5" - } - ], - "id": "e44d4c03-0add-4b1a-bd36-8f6e7ccd48d9", - "mac_address": "fa:16:3e:a6:27:3f", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "9472a8ab-9205-43ef-a460-5f01f031791a", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "ea2baef7-d84b-44c4-82e7-f274ab5e8b6f", - "device_owner": "network:router_gateway", - "fixed_ips": [ - { - "ip_address": "192.168.1.2", - "subnet_id": "b282ef86-2584-4a02-9b58-69d6233952a2" - } - ], - "id": "0ebefe26-de93-4d9e-b31a-b4620a6743e8", - "mac_address": "fa:16:3e:29:11:9b", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "ea2baef7-d84b-44c4-82e7-f274ab5e8b6f", - "device_owner": "network:router_interface", - "fixed_ips": [ - { - "ip_address": "192.168.101.1", - "subnet_id": "34efd537-7a72-4fcd-b837-9874caf34117" - } - ], - "id": "cf8c4f0a-f615-4437-a87a-39f2b87b7662", - "mac_address": "fa:16:3e:fb:4b:89", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "dhcp596d6b96-7696-5200-a782-fa1c60fe4171-f652780a-7a9d-4667-8df4-5c8632728be9", - "device_owner": "network:dhcp", - "fixed_ips": [ - { - "ip_address": "192.168.101.9", - "subnet_id": "34efd537-7a72-4fcd-b837-9874caf34117" - } - ], - "id": "30a92b3d-3353-4c24-9963-d0177b38ad59", - "mac_address": "fa:16:3e:f5:db:a6", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-1", - "wrs-binding:mtu": 1500, - "wrs-binding:vif_model": "virtio", - "binding:vif_type": "bridge", - "device_id": "2e934b37-772e-451a-b64a-cd68d9f8ae42", - "device_owner": "compute:nova", - "fixed_ips": [ - { - "ip_address": "192.168.101.11", - "subnet_id": "34efd537-7a72-4fcd-b837-9874caf34117" - } - ], - "id": "3ec39233-315c-474b-9f08-482e70c264c7", - "mac_address": "fa:16:3e:23:0c:bc", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "2c5c2553-36f2-4db4-8769-6ab71b6e2b1e", - "device_owner": "network:floatingip", - "fixed_ips": [ - { - "ip_address": "192.168.1.4", - "subnet_id": "b282ef86-2584-4a02-9b58-69d6233952a2" - } - ], - "id": "5e5a6728-81af-4b2d-b068-8a8e56847a1e", - "mac_address": "fa:16:3e:67:22:12", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "security_groups": [], - "status": "UNKNOWN", - "tenant_id": "" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-1", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "2e934b37-772e-451a-b64a-cd68d9f8ae42", - "device_owner": "compute:nova", - "fixed_ips": [], - "id": "8c99a79f-212c-45e5-89e6-8aa9ed3b5fcb", - "mac_address": "fa:16:3e:46:47:46", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "ce58c529-ba73-47f7-a409-a438ceced112", - "device_owner": "network:router_gateway", - "fixed_ips": [ - { - "ip_address": "192.168.1.3", - "subnet_id": "b282ef86-2584-4a02-9b58-69d6233952a2" - } - ], - "id": "10ce8655-96de-45f4-952c-a830ddf1f0d9", - "mac_address": "fa:16:3e:a4:1d:67", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "f2ade26f-5a16-4fef-b6f7-9bd9769ea1f4", - "device_owner": "network:floatingip", - "fixed_ips": [ - { - "ip_address": "192.168.1.5", - "subnet_id": "b282ef86-2584-4a02-9b58-69d6233952a2" - } - ], - "id": "573e154f-ec13-4e39-afcc-8e79d2089589", - "mac_address": "fa:16:3e:23:37:59", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "security_groups": [], - "status": "UNKNOWN", - "tenant_id": "" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-1", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "2e934b37-772e-451a-b64a-cd68d9f8ae42", - "device_owner": "compute:nova", - "fixed_ips": [], - "id": "9c9b1182-9f7d-4e21-910c-c4441a23d397", - "mac_address": "fa:16:3e:75:5f:61", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "7e5ed852-a990-4fc5-89a2-b17093ca1982", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-0", - "wrs-binding:mtu": 1500, - "binding:vif_type": "bridge", - "device_id": "dhcp596d6b96-7696-5200-a782-fa1c60fe4171-9472a8ab-9205-43ef-a460-5f01f031791a", - "device_owner": "network:dhcp", - "fixed_ips": [ - { - "ip_address": "192.168.201.6", - "subnet_id": "9aa900f4-522b-4b83-ba93-57f7d92da5d5" - } - ], - "id": "62872b6d-3e74-4838-9cf3-99736d0f3919", - "mac_address": "fa:16:3e:92:0b:14", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "9472a8ab-9205-43ef-a460-5f01f031791a", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-show_admin_response.json deleted file mode 100644 index 9d6f43b5a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/port-show_admin_response.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "port": { - "admin_state_up": true, - "binding:capabilities": { - "port_filter": true - }, - "binding:host_id": "compute-1", - "wrs-binding:mtu": 1500, - "wrs-binding:vif_model": "virtio", - "binding:vif_type": "bridge", - "device_id": "2e934b37-772e-451a-b64a-cd68d9f8ae42", - "device_owner": "compute:nova", - "fixed_ips": [ - { - "ip_address": "192.168.101.11", - "subnet_id": "34efd537-7a72-4fcd-b837-9874caf34117" - } - ], - "id": "3ec39233-315c-474b-9f08-482e70c264c7", - "mac_address": "fa:16:3e:23:0c:bc", - "wrs-binding:mac_filtering": false - "name": "", - "network_id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "security_groups": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_request.json deleted file mode 100644 index 800b415d8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "portforwarding": { - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.63", - "protocol": "tcp", - "outside_port": "1234", - "inside_port": "80", - "description": "sample port forwarding rule" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_response.json deleted file mode 100644 index 4ba742cea..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-create_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "portforwarding": { - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.63", - "protocol": "tcp", - "outside_port": "1234", - "tenant_id": "6d8ff9303a45465492566fb936fe3b1d", - "description": "sample port forwarding rule", - "id": "66ebb891-f883-4fbd-9daf-15b367429d39", - "inside_port": "80" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-list_admin_response.json deleted file mode 100644 index 053bb388e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-list_admin_response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "portforwardings": [{ - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.63", - "protocol": "tcp", - "outside_port": 1234, - "tenant_id": "6d8ff9303a45465492566fb936fe3b1d", - "description": "sample port forwarding rule", - "id": "66ebb891-f883-4fbd-9daf-15b367429d39", - "inside_port": 80 - }, - { - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.62", - "protocol": "tcp", - "outside_port": 1235, - "tenant_id": "6d8ff9303a45465492566fb936fe3b1d", - "description": "another sample port forwarding rule", - "id": "f8e22185-07f2-43e7-9213-abf84ef0eb58", - "inside_port": 80 - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-show_admin_response.json deleted file mode 100644 index d762c75c9..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-show_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "portforwarding": { - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.63", - "protocol": "tcp", - "outside_port": 1234, - "tenant_id": "6d8ff9303a45465492566fb936fe3b1d", - "description": "sample port forwarding rule", - "id": "66ebb891-f883-4fbd-9daf-15b367429d39", - "inside_port": 80 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_request.json deleted file mode 100644 index 832012476..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "portforwarding": { - "description": "updated sample port forwarding rule" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_response.json deleted file mode 100644 index fc846ffa3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/portforwarding-update_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "portforwarding": { - "router_id": "3303b254-404c-47eb-b02c-81bf0d602682", - "inside_addr": "192.168.101.63", - "protocol": "tcp", - "outside_port": 1234, - "tenant_id": "6d8ff9303a45465492566fb936fe3b1d", - "description": "updated sample port forwarding rule", - "id": "66ebb891-f883-4fbd-9daf-15b367429d39", - "inside_port": 80 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-list_admin_response.json deleted file mode 100644 index dd6817f47..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-list_admin_response.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "providernet_connectivity_tests":[ - { - "status":"PASS", - "segmentation_id":"10", - "updated_at":"2016-04-12 17:11:34.515416", - "host_name":"compute-1", - "providernet_id":"fc210630-7bb5-4ad2-a7e3-a4b752a8377b", - "host_id":"da6e8822-49ed-43f7-a5e4-90db837ffb2e", - "providernet_name":"physnet0", - "audit_uuid":"c3278c0b-660b-4152-a756-4eab241c1627", - "type":"vlan", - "message":"" - }, - { - "status":"PASS", - "segmentation_id":"10", - "updated_at":"2016-04-12 17:11:34.511279", - "host_name":"compute-0", - "providernet_id":"fc210630-7bb5-4ad2-a7e3-a4b752a8377b", - "host_id":"3c349ef5-d5f1-4bb1-9742-3538b6e9a352", - "providernet_name":"physnet0", - "audit_uuid":"c3278c0b-660b-4152-a756-4eab241c1627", - "type":"vlan", - "message":"" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_request.json deleted file mode 100644 index e5dc6481f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "providernet_connectivity_test":{ - "segmentation_id":null, - "host_name":null, - "providernet_id":null - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_response.json deleted file mode 100644 index f8879d4ed..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-connectivity-test-schedule_admin_response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "providernet_connectivity_test":{ - "audit_uuid":"12a9f9c2-ca3b-4b56-b463-5755022c8d16" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_request.json deleted file mode 100644 index aac43f98e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_request.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "providernet": { - "description": "A sample provider network", - "name": "test", - "type": "vlan", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_response.json deleted file mode 100644 index 512f2fe9b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-create_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "providernet": { - "description": "A sample provider network", - "id": "4da9e42c-e556-470c-8e92-cbd19bcc6a10", - "mtu": 1500, - "name": "test", - "ranges": [], - "status": "DOWN", - "type": "vlan", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-delete_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-delete_admin_response.json deleted file mode 100644 index 0967ef424..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-delete_admin_response.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-list_admin_response.json deleted file mode 100644 index 81f899e58..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-list_admin_response.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "providernets": [ - { - "description": "Group0 provider networks for data1 interfaces", - "id": "b67d40aa-3651-4dd6-886f-4bff5caa266e", - "mtu": 1500, - "name": "group0-data1", - "ranges": [ - { - "description": "tenant2 reserved networks", - "id": "a8184bf7-b683-4bc1-a70c-dae34391344c", - "maximum": 631, - "minimum": 616, - "name": "group0-tenant2", - "shared": false, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - } - ], - "status": "ACTIVE", - "type": "vlan", - "vlan_transparent": false, - }, - { - "description": "Group0 provider networks for data0 interfaces", - "id": "c496c429-cb52-4d4b-9171-b4b31fa91a80", - "mtu": 1500, - "name": "group0-data0", - "ranges": [ - { - "description": "Shared internal networks", - "id": "f3e1bc29-29f7-4ee0-a78d-9c3d7a0f53e5", - "maximum": 731, - "minimum": 700, - "name": "group0-shared", - "shared": true, - "tenant_id": null - }, - { - "description": "External network access", - "id": "35ef3460-700a-48a3-8df9-145eb68fcd31", - "maximum": 10, - "minimum": 10, - "name": "group0-external", - "shared": true, - "tenant_id": null - }, - { - "description": "tenant1 reserved networks", - "id": "736b0c0d-945b-4a17-9fe4-cf02a5327132", - "maximum": 615, - "minimum": 600, - "name": "group0-tenant1", - "shared": false, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } - ], - "status": "ACTIVE", - "type": "vlan", - "vlan_transparent": false, - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_request.json deleted file mode 100644 index 2c9894a87..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "providernet_range": { - "description": "A sample provider network segmentation range", - "maximum": "100", - "minimum": "1", - "name": "test-range-0", - "providernet_id": "239ffb19-bad8-4b05-9194-aa8399816a36", - "shared": true - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_response.json deleted file mode 100644 index 1f619850c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-create_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "providernet_range": { - "description": "A sample provider network segmentation range", - "id": "bdf07406-a867-42e5-9533-5100c4a3f2ba", - "maximum": "100", - "minimum": "1", - "name": "test-range-0", - "providernet_id": "239ffb19-bad8-4b05-9194-aa8399816a36", - "providernet_name": "test", - "shared": true, - "tenant_id": null - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-delete_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-delete_admin_response.json deleted file mode 100644 index 0967ef424..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-delete_admin_response.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-list_admin_response.json deleted file mode 100644 index 824a17c59..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-list_admin_response.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "providernet_ranges": [ - { - "description": "Shared internal networks", - "id": "f3e1bc29-29f7-4ee0-a78d-9c3d7a0f53e5", - "maximum": 731, - "minimum": 700, - "name": "group0-shared", - "providernet_id": "c496c429-cb52-4d4b-9171-b4b31fa91a80", - "providernet_name": "group0-data0", - "shared": true, - "tenant_id": null - }, - { - "description": "External network access", - "id": "35ef3460-700a-48a3-8df9-145eb68fcd31", - "maximum": 10, - "minimum": 10, - "name": "group0-external", - "providernet_id": "c496c429-cb52-4d4b-9171-b4b31fa91a80", - "providernet_name": "group0-data0", - "shared": true, - "tenant_id": null - }, - { - "description": "tenant1 reserved networks", - "id": "736b0c0d-945b-4a17-9fe4-cf02a5327132", - "maximum": 615, - "minimum": 600, - "name": "group0-tenant1", - "providernet_id": "c496c429-cb52-4d4b-9171-b4b31fa91a80", - "providernet_name": "group0-data0", - "shared": false, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "description": "tenant2 reserved networks", - "id": "a8184bf7-b683-4bc1-a70c-dae34391344c", - "maximum": 631, - "minimum": 616, - "name": "group0-tenant2", - "providernet_id": "b67d40aa-3651-4dd6-886f-4bff5caa266e", - "providernet_name": "group0-data1", - "shared": false, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - }, - { - "description": "A sample provider network segmentation range", - "id": "bdf07406-a867-42e5-9533-5100c4a3f2ba", - "maximum": 100, - "minimum": 1, - "name": "test-range-0", - "providernet_id": "239ffb19-bad8-4b05-9194-aa8399816a36", - "providernet_name": "test", - "shared": true, - "tenant_id": null - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-show_admin_response.json deleted file mode 100644 index a732ccd64..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-show_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "providernet_range": { - "description": "A sample provider network segmentation range", - "id": "bdf07406-a867-42e5-9533-5100c4a3f2ba", - "maximum": 100, - "minimum": 1, - "name": "test-range-0", - "providernet_id": "239ffb19-bad8-4b05-9194-aa8399816a36", - "providernet_name": "test", - "shared": true, - "tenant_id": null - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_request.json deleted file mode 100644 index 36174157f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "providernet_range": { - "maximum": "1099", - "minimum": "1000", - "description": "VLAN identifiers reserved for tenant1" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_response.json deleted file mode 100644 index 214c61c3a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-range-update_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "providernet_range": { - "description": null, - "id": "fe24481a-303f-4cd9-a0ac-76c2e4a9bcc8", - "maximum": "1099", - "minimum": "1000", - "name": "test-range-0", - "providernet_id": "c496c429-cb52-4d4b-9171-b4b31fa91a80", - "providernet_name": "group0-data0", - "shared": false, - "tenant_id": "206f147dcf72421fa6829e33bfb34637" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-show_admin_response.json deleted file mode 100644 index c39830042..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-show_admin_response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "providernet": { - "description": "Group0 provider networks for data1 interfaces", - "id": "b67d40aa-3651-4dd6-886f-4bff5caa266e", - "mtu": 1500, - "name": "group0-data1", - "ranges": [ - { - "description": "tenant2 reserved networks", - "id": "a8184bf7-b683-4bc1-a70c-dae34391344c", - "maximum": 631, - "minimum": 616, - "name": "group0-tenant2", - "shared": false, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - } - ], - "status": "ACTIVE", - "type": "vlan", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-type-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-type-list_admin_response.json deleted file mode 100644 index 8ede3117c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-type-list_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "providernet_types": [ - { - "description": "Ethernet network without additional encapsulation", - "type": "flat" - }, - { - "description": "802.1q encapsulated Ethernet network", - "type": "vlan" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_request.json deleted file mode 100644 index 73afba1cb..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "providernet": { - "description": "Another sample provider network" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_response.json deleted file mode 100644 index 31e0b5e39..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/providernet-update_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "providernet": { - "description": "Another sample provider network", - "id": "4da9e42c-e556-470c-8e92-cbd19bcc6a10", - "mtu": 1500, - "name": "test", - "ranges": [], - "status": "DOWN", - "type": "vlan", - "vlan_transparent": false, - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_request.json deleted file mode 100644 index 26e9e492b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_request.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "qos": { - "description": "A sample QoS profile", - "name": "test-qos-0", - "policies": { - "scheduler": { - "weight": "8" - } - }, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_response.json deleted file mode 100644 index 51061e1ab..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-create_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "qos": { - "description": "A sample QoS profile", - "id": "5e1841fa-c106-47ee-a736-e527478f1239", - "name": "test-qos-0", - "policies": { - "scheduler": { - "weight": "8" - } - }, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-delete_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-delete_admin_response.json deleted file mode 100644 index 0967ef424..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-delete_admin_response.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-list_admin_response.json deleted file mode 100644 index a2d63511d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-list_admin_response.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "qoses": [ - { - "description": "tenant1 Management Network Policy", - "id": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "name": "tenant1-mgmt-qos", - "policies": { - "scheduler": { - "weight": "8" - } - }, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "description": "tenant2 Management Network Policy", - "id": "62970a9a-b093-4747-92dd-9de25616036a", - "name": "tenant2-mgmt-qos", - "policies": { - "scheduler": { - "weight": "8" - } - }, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - }, - { - "description": "External Network Policy", - "id": "d28e697c-c290-4895-b57c-ac7d38db9003", - "name": "external-qos", - "policies": { - "scheduler": { - "weight": "16" - } - }, - "tenant_id": "206f147dcf72421fa6829e33bfb34637" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-show_admin_response.json deleted file mode 100644 index 2d447bdce..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-show_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "qos": { - "description": "tenant1 Management Network Policy", - "id": "102c64e4-ad26-4610-ae39-f59e15fcb80c", - "name": "tenant1-mgmt-qos", - "policies": { - "scheduler": { - "weight": "8" - } - }, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_request.json deleted file mode 100644 index 915c5257b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "qos": { - "description": "Another sample QoS profile", - "policies": { - "scheduler": { - "weight": "16" - } - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_response.json deleted file mode 100644 index f30e97cdf..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/qos-update_admin_response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "qos": { - "description": "Another sample QoS profile", - "id": "5e1841fa-c106-47ee-a736-e527478f1239", - "name": "test-qos-0", - "policies": { - "scheduler": { - "weight": "16" - } - }, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-list_admin_response.json deleted file mode 100644 index 841277b95..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-list_admin_response.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "routers": [ - { - "admin_state_up": true, - "external_gateway_info": { - "enable_snat": true, - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876" - }, - "wrs-net:host": "compute-0", - "id": "ea2baef7-d84b-44c4-82e7-f274ab5e8b6f", - "name": "tenant1-router", - "routes": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "admin_state_up": true, - "external_gateway_info": { - "enable_snat": true, - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876" - }, - "wrs-net:host": "compute-0", - "id": "ce58c529-ba73-47f7-a409-a438ceced112", - "name": "tenant2-router", - "routes": [], - "status": "ACTIVE", - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-show_admin_response.json deleted file mode 100644 index fe50ad41d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/router-show_admin_response.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "router": { - "admin_state_up": true, - "external_gateway_info": { - "enable_snat": true, - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876" - }, - "wrs-net:host": "compute-0", - "id": "ea2baef7-d84b-44c4-82e7-f274ab5e8b6f", - "name": "tenant1-router", - "routes": [], - "status": "ACTIVE", - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-delete_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-delete_admin_response.json deleted file mode 100644 index 0967ef424..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-delete_admin_response.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-list_admin_response.json deleted file mode 100644 index ba19c2204..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-list_admin_response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "settings": [ - { - "mac_filtering": false, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10" - }, - { - "mac_filtering": false, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-show_admin_response.json deleted file mode 100644 index 711e0cc83..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-show_admin_response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "setting": { - "mac_filtering": false - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_request.json deleted file mode 100644 index 8b07d45b4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "setting": { - "mac_filtering": true - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_response.json deleted file mode 100644 index 8b07d45b4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/setting-update_admin_response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "setting": { - "mac_filtering": true - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_request.json deleted file mode 100644 index 2a669b1b6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_request.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "subnet": { - "cidr": "1.2.3.0/24", - "enable_dhcp": false, - "ip_version": 4, - "wrs-net:managed": false, - "name": "test-subnet-0", - "network_id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": "615", - "wrs-net:vlan_id": 99 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_response.json deleted file mode 100644 index fe694b0b0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-create_admin_response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "subnet": { - "allocation_pools": [], - "cidr": "1.2.3.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": null, - "host_routes": [], - "id": "837aebc9-6c78-43e9-8124-168ba16adbc7", - "ip_version": 4, - "wrs-net:managed": false, - "name": "test-subnet-0", - "network_id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 615, - "tenant_id": "206f147dcf72421fa6829e33bfb34637", - "wrs-net:vlan_id": 99 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-list_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-list_admin_response.json deleted file mode 100644 index ef632343d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-list_admin_response.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "subnets": [ - { - "allocation_pools": [ - { - "end": "192.168.1.254", - "start": "192.168.1.2" - } - ], - "cidr": "192.168.1.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": "192.168.1.1", - "host_routes": [], - "id": "b282ef86-2584-4a02-9b58-69d6233952a2", - "ip_version": 4, - "wrs-net:managed": true, - "name": "external-subnet0", - "network_id": "b9475152-11d3-4bda-95c7-fb26a3ad3876", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 10, - "tenant_id": "206f147dcf72421fa6829e33bfb34637", - "wrs-net:vlan_id": 0 - }, - { - "allocation_pools": [ - { - "end": "192.168.201.50", - "start": "192.168.201.2" - } - ], - "cidr": "192.168.201.0/24", - "dns_nameservers": [], - "enable_dhcp": true, - "gateway_ip": "192.168.201.1", - "host_routes": [], - "id": "9aa900f4-522b-4b83-ba93-57f7d92da5d5", - "ip_version": 4, - "wrs-net:managed": true, - "name": "tenant2-mgmt-subnet", - "network_id": "9472a8ab-9205-43ef-a460-5f01f031791a", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data1", - "wrs-provider:segmentation_id": 616, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3", - "wrs-net:vlan_id": 0 - }, - { - "allocation_pools": [ - { - "end": "192.168.101.50", - "start": "192.168.101.2" - } - ], - "cidr": "192.168.101.0/24", - "dns_nameservers": [], - "enable_dhcp": true, - "gateway_ip": "192.168.101.1", - "host_routes": [], - "id": "34efd537-7a72-4fcd-b837-9874caf34117", - "ip_version": 4, - "wrs-net:managed": true, - "name": "tenant1-mgmt-subnet", - "network_id": "f652780a-7a9d-4667-8df4-5c8632728be9", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 600, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10", - "wrs-net:vlan_id": 0 - }, - { - "allocation_pools": [], - "cidr": "10.0.0.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": null, - "host_routes": [], - "id": "ad791a3e-33cf-4d8d-b80f-91c87f97745e", - "ip_version": 4, - "wrs-net:managed": false, - "name": "internal0-subnet0-0", - "network_id": "7e5ed852-a990-4fc5-89a2-b17093ca1982", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 700, - "tenant_id": "206f147dcf72421fa6829e33bfb34637", - "wrs-net:vlan_id": 0 - }, - { - "allocation_pools": [], - "cidr": "172.16.0.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": null, - "host_routes": [], - "id": "bc269028-1862-4dde-ba2e-62a67d1af4e4", - "ip_version": 4, - "wrs-net:managed": false, - "name": "tenant1-subnet0", - "network_id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 601, - "tenant_id": "0590d9fa3dd74bfe9bdf7ed4e5331a10", - "wrs-net:vlan_id": 0 - }, - { - "allocation_pools": [], - "cidr": "172.18.0.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": null, - "host_routes": [], - "id": "985806f5-9fd7-4d47-9da6-cb0c1316e63d", - "ip_version": 4, - "wrs-net:managed": false, - "name": "tenant2-subnet0", - "network_id": "7a77e654-794a-4e19-9679-ac2733e19876", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data1", - "wrs-provider:segmentation_id": 617, - "tenant_id": "d8753af85cef49a4bf5f95208c4957f3", - "wrs-net:vlan_id": 0 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-show_admin_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-show_admin_response.json deleted file mode 100644 index fe694b0b0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/api_samples/networking-v2-cgcs-ext/subnet-show_admin_response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "subnet": { - "allocation_pools": [], - "cidr": "1.2.3.0/24", - "dns_nameservers": [], - "enable_dhcp": false, - "gateway_ip": null, - "host_routes": [], - "id": "837aebc9-6c78-43e9-8124-168ba16adbc7", - "ip_version": 4, - "wrs-net:managed": false, - "name": "test-subnet-0", - "network_id": "2c0896cf-d118-4dca-9760-b4d97e3c7ec3", - "wrs-provider:network_type": "vlan", - "wrs-provider:physical_network": "group0-data0", - "wrs-provider:segmentation_id": 615, - "tenant_id": "206f147dcf72421fa6829e33bfb34637", - "wrs-net:vlan_id": 99 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/cgcs-ext/networking-v2-cgcs-ext.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/cgcs-ext/networking-v2-cgcs-ext.wadl deleted file mode 100644 index da3fbfb73..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/cgcs-ext/networking-v2-cgcs-ext.wadl +++ /dev/null @@ -1,1864 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - The alias for the extension - to list. - - - - - - - - - - - - - - - - - - - The ID for a provider network. - - - - - - - - - - - - - - - - - - - - - - - - The ID for a provider network segmentation range. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The ID for a host running neutron services. - - - - - - - - - - - - - - - - - - - - The ID for a tenant. - - - - - - - - - - - - - - - - - - - - - - - - - The ID for a QOS Policy. - - - - - - - - - - - - - - - - - - - - - - The UUID for a network. - - - - - - - - - - - - - - - - - - The UUID for a subnet. - - - - - - - - - - - - - - - - - The UUID for a port. - - - - - - - - - - - - - - - - - The UUID for a router. - - - - - - - - - - - - - - - - - The ID for a virtual router port forwarding rule. - - - - - - - - - - - - - - - - - - - - - - - - Lists all extensions. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Gets information about a specified extension. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - Lists all provider networks. - - - - - - - - The list of provider networks. - - - &providernetListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific provider network. - - - - - - &providernetListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific provider network. - - - - - - - - User defined description of the provider network. - - - - - Specifies whether VLAN transparent network are supported on this provider network. - - - - - - - - - - - - - - &providernetListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a provider network. - - - - - - - - User defined description of the provider network. - - - - - The user defined name of the provider network. - - - - - The encapsulation type of the provider network. Valid values are: vlan, flat - - - - - Specifies whether VLAN transparent network are supported on this provider network. - - - - - - - - - - - - - - &providernetListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific provider network. - - - - - - - - - - - - - - - - - - Lists all provider network ranges. - - - - - - - - The list of provider network ranges. - - - &providernetrangeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific provider network range. - - - - - - &providernetrangeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific provider network range. - - - - - - - - User defined description of the provider network segmentation range. - - - - - The upper bound of the segmentation range (inclusive). - - - - - The lower bound of the segmentation range (inclusive). - - - - - - - - - - - - - - &providernetrangeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a provider network range. - - - - - - - - User defined description of the provider network segmentation range. - - - - - The upper bound of the segmentation range (inclusive). - - - - - The lower bound of the segmentation range (inclusive). - - - - - The user defined name of the provider network segmentation range. - - - - - - - - - - - - - - &providernetrangeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific provider network range. - - - - - - - - - - - - - - - - - Lists all supported providernet types. - Insert extra description here, if required. - - - - - - - - The list of supported providernet types. - - - - - System description of the provider network type. - - - - - The encapsulation type of the provider network. Valid values are: vlan, flat - - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Lists results of providernet connectivity tests. - - - - - - - - List of providernet connectivity test results. - - - - - - - - - - &commonFaults; &getFaults; - - - - - Schedule providernet connectivity test to be run, and return scheduled UUID. - - - - - - - - Run audit for a given providernet identified by name. - - - - - Run audit for a given providernet identified by ID. - - - - - Run audit for all providernets on a given host identified by name. - - - - - Run audit for all providernets on a given host identified by ID. - - - - - Restrict audit to these segmentation IDs. - - - - - - - - - - - - - - - - Unique ID assigned to the audit. - - - - - - - - - - &postPutFaults; - - - - - - - - - - - Lists all hosts providing neutron services. - - - - - - - - The list of host entities with neutron services. - - - &hostListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific host providing neutron services. - - - - - - &hostListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Creates a record for a host providing neutron services. - - - - - - - - The current availability state of the host. Valid values are: UP or DOWN - - - - - The user defined name assigned to the host. This should normally match the system hostname of the host node. - - - - - - - - - - - - - - &providernetrangeListShowParameters; - - - - - - - - &postPutFaults; - - - - - Updates a host record. - - - - - - - - The current availability state of the host. Valid values are: up or down - - - - - - - - - - - - - - &providernetrangeListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a specific host record. - - - - - - - - - - - - - - - - Lists all tenant network settings. - - - - - - - - The list of tenant network settings. - - - &settingListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific tenant network setting. - - - - - - &settingListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific tenant network setting. - - - - - - - - The state of the source MAC filtering feature for the - specified tenant. The current state of the feature only affects - newly launched VM instances. - - - - - - - - - - - - - - &settingListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific tenant network setting. - - - - - - - - - - - - - - - - - Lists all QOS policies. - - - - - - - - The list of QOS policies. - - - &qosListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific QOS policy. - - - - - - &qosListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific QOS policy. - - - - - - - - The user defined description of the QoS policy. - - - - - The set of scheduler policies and weights for the QoS policy. - - - - - - - - - - - - - - &qosListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a QOS policy. - - - - - - - - The user defined description of the QoS policy. - - - - - The user defined name of the QoS policy. - - - - - The set of scheduler policies and weights for the QoS policy. - - - - - The unique UUID of the tenant to which this policy is assigned. - - - - - - - - - - - - - - &qosListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific QOS policy. - - - - - - - - - - - - - - - - - - Lists networks that are accessible - to the tenant who submits the reequest. - &standardApiDescription; - - - - - - - - The list of tenant networks. - - - &netListShowParameters; - - - - - - - &fault401; - - - - - Lists networks that are implemented by a given provider network. Each network is listed with its assigned provider network segmentation identifier. If the network has any tagged subnets then they will be listed as separate entities with their corresponding provider network segmentation identifier. - - - - - - - - The list of tenant networks. - - - - - The unique UUID value of the tenant network. - - - - - The user defined name of the tenant network. - - - - - The encapsulation type of the provider network. - - - - - The provider network segmentation identifier that is assigned to this tenant network. If the vlan_id attribute is non-zero then the segmentation_id represents that identifier which has been associated to a tagged subnet on the listed tenant network. - - - - - The VLAN identifier which has been configured on the tenant subnet. - - - - - - - - - &fault401; - - - - - Shows information for a specified - network. - &standardApiDescription; - - - - - - &netListShowParameters; - - - - - - - &fault401; &fault404; - - - - - Creates a tenant network. - &standardApiDescription; - - - - - - - - The unique UUID of the assigned QoS policy. - - - - - - - - - - - - - - &providernetrangeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Lists subnets that are accessible - to the tenant who submits the request. - &standardApiDescription; - - - - - - - - The list of subnets. - - - &subnetListShowParameters; - - - - - - - &fault401; - - - - - Creates a subnet on a specified - network. - &standardApiDescription; - - - - - - - - Indicates whether IP address allocation is managed by the system or by the customer. - If true then the system allocates IP addresses when ports are created and attached to VM instances. - If false then the system will not assign any IP addresses automatically. This implies that if the system cannot allocate any IP addresses that it also cannot allocate a DHCP server, manage allocation pools, or server DNS nameservers or static routers. - - - - - The VLAN ID to be used in the VM instance. If the VLAN ID is 0 then all packets originated from the VM instance are expected to be untagged. If the VLAN ID value is non zero than it is expected that all packets originated by the VM must be tagged with the corresponding VLAN ID value. Any other value will be discarded by the host vswitch. - - - - - The type of physical network that maps to this subnet resource. For example, flat, vlan, or vxlan. The value specified must match the equivalent attribute value on the parent network resource. - Only available to admin users. - - - - - The physical network where this subnet object is implemented. The value specified must match the equivalent attribute value on the parent network resource. - Only available to admin users. - - - - - An isolated segment on the physical network reserved for this subnet resource. The network_type attribute defines the segmentation model. For example, if the network_type is vlan, this ID is a vlan identifier. If the network_type value is vxlan, this ID is a vxlan VNI value. All subnets on a specific network that share the same wrs-net:vlan_id attribute value must have the same segmentation_id attribute value. - Only available to admin users. - - - - - - - - - - - - - - &subnetListShowParameters; - - - - - - - &fault400; &fault401; &fault403; &fault404; - &fault409conflict; - - - - - Shows information for a specified - subnet. - &standardApiDescription; - - - - - - &subnetListShowParameters; - - - - - - - &fault401; &fault404; - - - - - - - - - - Lists ports to which the tenant has - access. - &standardApiDescription; - - - - - - - - The list of ports. - - - &portListShowParameters; - - - - - - - &fault401; - - - - - Shows information for a specified - port. - &standardApiDescription; - - - - - - &portListShowParameters; - - - - - - - &fault401; &fault404; - - - - - - - - - - - Lists logical routers that are - accessible to the tenant who submits the - request. - &standardApiDescription; - - - - - - - - The list of virtual routers. - - - &routerListShowParameters; - - - - - - - &fault401; - - - - - Shows details for a specified - router. - &standardApiDescription; - - - - - - &routerListShowParameters; - - - - - - - &fault401; &fault403; &fault404; - - - - - - - - - Lists all virtual router port forwarding rules. - - - - - - - - The list of virtual router port forwarding rules. - - - &portForwardingListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific virtual router port forwarding rule. - - - - - - &portForwardingListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Creates a record for a virtual router port forwarding rule. - - - - - - - - The virtual router on which to create the port forwarding rule - - - - - The internal (private) address which is the final destination of the forwarding rule. - - - - - The internal (private) layer4 protocol port number. - - - - - The external (public) address which is the initial destination of the forwarding rule. - - - - - The layer4 protocol name; valid values are: udp, tcp, udp-lite, sctp, dccp. - - - - - A user defined description string. - - - - - - - - - - - - - - &portForwardingListShowParameters; - - - - - - - - &postPutFaults; - - - - - Updates a virtual router port forwarding rule. - - - - - - - - The internal (private) address which is the final destination of the forwarding rule. - - - - - The internal (private) layer4 protocol port number. - - - - - The external (public) address which is the initial destination of the forwarding rule. - - - - - The layer4 protocol name; valid values are: udp, tcp, udp-lite, sctp, dccp. - - - - - A user defined description string. - - - - - - - - - - - - - - &portForwardingListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a specific virtual router port forwarding rule. - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/common.ent deleted file mode 100644 index 2655d2dc9..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/networking-api/v2/common.ent +++ /dev/null @@ -1,590 +0,0 @@ - - - - - - Indicates namespace of the extension. - - - - - Indicates name of the extension. - - - - - Indicates updated time of the extension. - - - - - Indicates description of the extension. - - - - - Indicates alias of the extension. - - - - - A list of links for the extension. - - - '> - - - This is an existing OpenStack API. The documentation that follows lists only the fields that are new or modified. For a detailed description of existing and unmodified fields please refer to the standard OpenStack API documentation. - '> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - - '> - - - - - - '> - - - - - - '> - - - - - - '> - - - - - - '> - - - - - - - - - - '> - - - - - '> - - - - - - - '> - - - - - - '> - - - - - - - User defined description of the provider network. - - - - - The unique UUID value of the provider network. - - - - - The maximum transmit unit (MTU) assigned to the provider network. - Must be between 576 and 9216 bytes inclusively. The default value is 1500. - - - - - - The user defined name of the provider network. - - - - - The list of segmentation ranges defined for this provider network. - See the provider network range description for a description of range fields. - - - - - The current status of the provider network. Returns ACTIVE if at least - one compute node has a data interface associated to this provider network and - is available. - - - '> - - - - - - - User defined description of the provider network segmentation range. - - - - - The unique UUID value of the provider network segmentation range. - - - - - The upper bound of the segmentation range (inclusive). - - - - - The lower bound of the segmentation range (inclusive). - - - - - The user defined name of the provider network segmentation range. - - - - - The unique UUID of the parent provider network. - - - - - The user defined name of the parent provider network. - - - - - The shared attribute indicates that the range is available to any tenant. - - - - - The unique UUID of the tenant which owns the range. - Only valid if the shared attribute is False. - - - '> - - - - - - The list of neutron agents that are running on the host. - - - - - The current availability state of the host. Valid values are: UP or DOWN - - - - - The unique UUID of the host. - - - - - The user defined name assigned to the host. This should normally match the system hostname of the host node. - - - - - The number of virtual ports currently allocated on the host vswitch. - - - - - The number of virtual routers currently assigned to the host. - - - - - The number of DHCP enabled tenant networks currently assigned - to the DHCP server running on the host. - - - '> - - - - - - The state of the source MAC filtering feature for the - specified tenant. The current state of the feature only affects - newly launched VM instances. - - - - - The unique UUID of the tenant. - - - '> - - - - - - - The unique UUID of the assigned QoS policy. - - - - - Indicates whether the tenant network is ACTIVE or DOWN. If the network is DHCP enabled then it can only be active if at least 1 DHCP agent is servicing the network. - Titanium Cloud corrected the reporting of this status. - - - '> - - - - - - - Indicates whether IP address allocation is managed by the system or by the customer. - If true then the system allocates IP addresses when ports are created and attached to VM instances. - If false then the system will not assign any IP addresses automatically. This implies that if the system cannot allocate any IP addresses that it also cannot allocate a DHCP server, manage allocation pools, or server DNS nameservers or static routers. - - - - - The type of the provider network to which this subnet is assigned. - Only visible to admin users. - - - - - The name of the provider network to which this subnet is assigned. - Only visible to admin users. - - - - - The provider network segmentation id to which this subnet is assigned. - Only visible to admin users. - - - - - The VLAN ID to be used in the VM instance. If the VLAN ID is 0 then all packets originated from the VM instance are expected to be untagged. If the VLAN ID value is non zero than it is expected that all packets originated by the VM must be tagged with the corresponding VLAN ID value. Any other value will be discarded by the host vswitch. - - - '> - - - - - - The state of source MAC address filtering on the port. If this is true then the attached vswitch enforces that all ingress packets have a source MAC address that matches the port MAC address. - - - - - The maximum transmit unit (MTU). This value is inherited from the tenant network that attaches to this port. - - - - - The type of virtual networking device that is presented to the VM instance. This value is only visible if the device_owner is a VM instance port (i.e., device_owner="compute:nova"). - - - '> - - - - - - The host node where this virtual router is implemented. - Only visible to admin users. - - - '> - - - - - - - The user defined description of the QoS policy. - - - - - The unique UUID value of the QoS policy. - - - - - The user defined name of the QoS policy. - - - - - The set of scheduler policies and weights for the QoS policy. - - - - - The unique UUID of the tenant to which this policy is assigned. - - - - '> - - - - - - - The unique UUID of the router to which the rule is associated. - - - - - The unique UUID of the tenant which owns the rule. - - - - - The internal (private) address which is the final destination of the forwarding rule. - - - - - The internal (private) layer4 protocol port number. - - - - - The external (public) address which is the initial destination of the forwarding rule. - - - - - The layer4 protocol name; valid values are: udp, tcp, udp-lite, sctp, dccp. - - - - - A user defined description string. - - - '> - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-request.json deleted file mode 100755 index 9105460c1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-request.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "controller-apply-type": "serial", - "default-instance-action": "stop-start", - "compute-apply-type": "serial", - "storage-apply-type": "serial", - "swift-apply-type": "ignore", - "alarm-restrictions": "strict" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-response.json deleted file mode 100755 index 5b38fb3ff..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-patch-strategy-response.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 0, - "uuid": "15dc4b63-ae5f-48ca-b76e-ec367ef817f5", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "alarm-restrictions": "strict", - "current-phase": "build", - "apply-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "building", - "default-instance-action": "stop-start", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "", - "phase-name": "build", - "completion-percentage": 0, - "total-stages": 1, - "stop-at-stage": 1, - "result": "inprogress", - "timeout": 182, - "reason": "", - "inprogress": true, - "stages": [ - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "wait", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-sw-patches", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "query-sw-patch-hosts", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "inprogress", - "timeout": 181, - "total-steps": 3, - "inprogress": true, - "stage-name": "sw-patch-query" - } - ], - "current-stage": 0 - }, - "swift-apply-type": "ignore" - } -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-request.json deleted file mode 100755 index 8ea910e79..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "compute-apply-type": "serial", - "storage-apply-type": "serial", - "alarm-restrictions": "relaxed" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-response.json deleted file mode 100755 index f6e6bd788..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/create-upgrade-strategy-response.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 0, - "uuid": "ac9b953a-caf1-4abe-8d53-498b598e6731", - "name": "sw-upgrade", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "current-phase": "build", - "apply-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "building", - "default-instance-action": "migrate", - "alarm-restrictions": "relaxed", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "", - "phase-name": "build", - "completion-percentage": 0, - "total-stages": 1, - "stop-at-stage": 1, - "result": "inprogress", - "timeout": 122, - "reason": "", - "inprogress": true, - "stages": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "wait", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-upgrade", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "inprogress", - "timeout": 121, - "total-steps": 2, - "inprogress": true, - "stage-name": "sw-upgrade-query" - } - ], - "current-stage": 0 - }, - "swift-apply-type": "ignore" - } -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-patch-strategy-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-patch-strategy-request.json deleted file mode 100644 index 7a73a41bf..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-patch-strategy-request.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-upgrade-strategy-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-upgrade-strategy-request.json deleted file mode 100644 index 7a73a41bf..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/delete-upgrade-strategy-request.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-patch-strategy-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-patch-strategy-response.json deleted file mode 100755 index 647c2a49a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-patch-strategy-response.json +++ /dev/null @@ -1,725 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 100, - "uuid": "c1971c42-b494-4ff0-8abf-dbde17929972", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "alarm-restrictions": "strict", - "current-phase": "build", - "apply-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 100, - "total-stages": 6, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "523cbd2d-f7f8-4707-8617-d085386f8711" - ], - "step-name": "swact-hosts", - "result": "initial", - "entity-names": [ - "controller-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "523cbd2d-f7f8-4707-8617-d085386f8711" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "controller-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "523cbd2d-f7f8-4707-8617-d085386f8711" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "controller-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "523cbd2d-f7f8-4707-8617-d085386f8711" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "controller-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-controllers" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 1, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "0f3715c0-fecd-46e0-9cd0-4fbb31810393" - ], - "step-name": "swact-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "0f3715c0-fecd-46e0-9cd0-4fbb31810393" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "0f3715c0-fecd-46e0-9cd0-4fbb31810393" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "0f3715c0-fecd-46e0-9cd0-4fbb31810393" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-controllers" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 2, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "instances", - "step-id": 1, - "entity-uuids": [ - "e5236dac-288f-4a1d-b1de-1c630aaa0df0" - ], - "step-name": "migrate-instances", - "result": "initial", - "entity-names": [ - "cirros-image-with-volumes-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "9a0dd555-a73b-4e49-b8e0-9cefeb2fb636" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-3" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "9a0dd555-a73b-4e49-b8e0-9cefeb2fb636" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-3" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "9a0dd555-a73b-4e49-b8e0-9cefeb2fb636" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-3" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 3, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "instances", - "step-id": 1, - "entity-uuids": [ - "ab977908-b5a4-44f1-832b-d7ebcfa476f0", - "7da7e6c6-fe9a-400e-99e5-4940b9b372ad", - "936fe92e-e48c-46ad-a052-9cdaea6fe840" - ], - "step-name": "migrate-instances", - "result": "initial", - "entity-names": [ - "cirros-ephemeral-swap-1", - "cirros-1", - "cirros-ephemeral-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "8fb371f2-fe1c-4325-a6f5-3487e33c9059" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "8fb371f2-fe1c-4325-a6f5-3487e33c9059" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "8fb371f2-fe1c-4325-a6f5-3487e33c9059" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 4, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "instances", - "step-id": 1, - "entity-uuids": [ - "f8c263c7-06c6-46f9-8c34-e2451e5ac8d5" - ], - "step-name": "migrate-instances", - "result": "initial", - "entity-names": [ - "cirros-swap-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "14cfa022-a29f-488b-a1e3-0c2a8231b33a" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "14cfa022-a29f-488b-a1e3-0c2a8231b33a" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "14cfa022-a29f-488b-a1e3-0c2a8231b33a" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 5, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "instances", - "step-id": 1, - "entity-uuids": [ - "25ad74e3-e4fe-4d1d-920a-7e1ecb38625b" - ], - "step-name": "migrate-instances", - "result": "initial", - "entity-names": [ - "cirros-image-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "c4f93e44-241b-4230-b4b3-098c0a9949fb" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-2" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "c4f93e44-241b-4230-b4b3-098c0a9949fb" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-2" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 4, - "entity-uuids": [ - "c4f93e44-241b-4230-b4b3-098c0a9949fb" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-2" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 5, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 4621, - "total-steps": 6, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - } - ], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "ready-to-apply", - "default-instance-action": "migrate", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2016-11-16 13:36:27", - "end-date-time": "2016-11-16 13:36:28", - "phase-name": "build", - "completion-percentage": 100, - "total-stages": 1, - "stop-at-stage": 1, - "result": "success", - "timeout": 182, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "2016-11-16 13:36:27", - "end-date-time": "2016-11-16 13:36:28", - "stage-id": 0, - "reason": "", - "current-step": 3, - "steps": [ - { - "start-date-time": "2016-11-16 13:36:27", - "end-date-time": "2016-11-16 13:36:27", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2016-11-16 13:36:27", - "end-date-time": "2016-11-16 13:36:28", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-sw-patches", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2016-11-16 13:36:28", - "end-date-time": "2016-11-16 13:36:28", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "query-sw-patch-hosts", - "result": "success", - "entity-names": [], - "reason": "" - } - ], - "result": "success", - "timeout": 181, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-query" - } - ], - "current-stage": 1 - }, - "swift-apply-type": "ignore" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-upgrade-strategy-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-upgrade-strategy-response.json deleted file mode 100755 index a974490ce..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/get-upgrade-strategy-response.json +++ /dev/null @@ -1,356 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 100, - "uuid": "ac9b953a-caf1-4abe-8d53-498b598e6731", - "name": "sw-upgrade", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "current-phase": "build", - "apply-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 100, - "total-stages": 3, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 7200, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "wait-data-sync", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 10861, - "total-steps": 5, - "inprogress": false, - "stage-name": "sw-upgrade-controllers" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 1, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 3721, - "total-steps": 5, - "inprogress": false, - "stage-name": "sw-upgrade-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 2, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 3721, - "total-steps": 5, - "inprogress": false, - "stage-name": "sw-upgrade-compute-hosts" - } - ], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "ready-to-apply", - "default-instance-action": "migrate", - "alarm-restrictions": "relaxed", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "phase-name": "build", - "completion-percentage": 100, - "total-stages": 1, - "stop-at-stage": 1, - "result": "success", - "timeout": 122, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "stage-id": 0, - "reason": "", - "current-step": 2, - "steps": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-upgrade", - "result": "success", - "entity-names": [], - "reason": "" - } - ], - "result": "success", - "timeout": 121, - "total-steps": 2, - "inprogress": false, - "stage-name": "sw-upgrade-query" - } - ], - "current-stage": 1 - }, - "swift-apply-type": "ignore" - } -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-api-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-api-response.json deleted file mode 100644 index 0a8ab05d5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-api-response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "versions": [ - { - "status": "stable", - "id": "v1", - "links": [ - { - "href": "http://192.168.204.2:4545/api/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:4545/api/orchestration/", - "rel": "orchestration" - } - ] - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-response.json deleted file mode 100644 index 46d04b0a3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/nfv-vim-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "nfv-vim", - "links": [ - { - "href": "http://192.168.204.2:4545/api/", - "rel": "api" - } - ], - "description": "NFV - Virtual Infrastructure Manager" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/orchestration-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/orchestration-response.json deleted file mode 100644 index 8e45b1b4d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/orchestration-response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "id": "orchestration", - "links": [ - { - "href": "http://192.168.204.2:4545/orchestration/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:4545/orchestration/sw-patch/", - "rel": "sw-patch" - }, - { - "href": "http://192.168.204.2:4545/orchestration/sw-upgrade/", - "rel": "sw-upgrade" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-request.json deleted file mode 100644 index 6ca8b11c7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "action": "apply-all" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-response.json deleted file mode 100755 index 8f2a63afb..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/patch-strategy-action-response.json +++ /dev/null @@ -1,379 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 0, - "uuid": "15dc4b63-ae5f-48ca-b76e-ec367ef817f5", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "alarm-restrictions": "strict", - "current-phase": "apply", - "apply-phase": { - "start-date-time": "2016-11-16 19:28:28", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 0, - "total-stages": 5, - "stop-at-stage": 5, - "result": "inprogress", - "timeout": 9606, - "reason": "", - "inprogress": true, - "stages": [ - { - "start-date-time": "2016-11-16 19:28:28", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "2016-11-16 19:28:28", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "wait", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "0f3715c0-fecd-46e0-9cd0-4fbb31810393" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "inprogress", - "timeout": 1921, - "total-steps": 3, - "inprogress": true, - "stage-name": "sw-patch-controllers" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 1, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "9a0dd555-a73b-4e49-b8e0-9cefeb2fb636" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-3" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 1921, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 2, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "8fb371f2-fe1c-4325-a6f5-3487e33c9059" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 1921, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 3, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "14cfa022-a29f-488b-a1e3-0c2a8231b33a" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 1921, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 4, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "c4f93e44-241b-4230-b4b3-098c0a9949fb" - ], - "step-name": "sw-patch-hosts", - "result": "initial", - "entity-names": [ - "compute-2" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 1921, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-compute-hosts" - } - ], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "applying", - "default-instance-action": "stop-start", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "2016-11-16 19:14:05", - "phase-name": "build", - "completion-percentage": 100, - "total-stages": 1, - "stop-at-stage": 1, - "result": "success", - "timeout": 182, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "2016-11-16 19:14:05", - "stage-id": 0, - "reason": "", - "current-step": 3, - "steps": [ - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "2016-11-16 19:14:05", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "2016-11-16 19:14:05", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-sw-patches", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2016-11-16 19:14:05", - "end-date-time": "2016-11-16 19:14:05", - "timeout": 60, - "entity-type": "", - "step-id": 2, - "entity-uuids": [], - "step-name": "query-sw-patch-hosts", - "result": "success", - "entity-names": [], - "reason": "" - } - ], - "result": "success", - "timeout": 181, - "total-steps": 3, - "inprogress": false, - "stage-name": "sw-patch-query" - } - ], - "current-stage": 1 - }, - "swift-apply-type": "ignore" - } -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-patch-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-patch-response.json deleted file mode 100644 index 22929af43..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-patch-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "id": "sw-patch", - "links": [ - { - "href": "http://192.168.204.2:4545/orchestration/sw-patch/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:4545/orchestration/sw-patch/strategy/", - "rel": "strategy" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-upgrade-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-upgrade-response.json deleted file mode 100644 index 4de96cd1e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/sw-upgrade-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "id": "sw-upgrade", - "links": [ - { - "href": "http://192.168.204.2:4545/orchestration/sw-upgrade/", - "rel": "self" - }, - { - "href": "http://192.168.204.2:4545/orchestration/sw-upgrade/strategy/", - "rel": "strategy" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-request.json deleted file mode 100644 index 6ca8b11c7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "action": "apply-all" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-response.json deleted file mode 100755 index 4e0e50cb5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/api_samples/upgrade-strategy-action-response.json +++ /dev/null @@ -1,356 +0,0 @@ -{ - "strategy": { - "controller-apply-type": "serial", - "current-phase-completion-percentage": 0, - "uuid": "ac9b953a-caf1-4abe-8d53-498b598e6731", - "name": "sw-upgrade", - "compute-apply-type": "serial", - "max-parallel-compute-hosts": 2, - "current-phase": "apply", - "apply-phase": { - "start-date-time": "2017-01-10 16:19:12", - "end-date-time": "", - "phase-name": "apply", - "completion-percentage": 0, - "total-stages": 3, - "stop-at-stage": 3, - "result": "inprogress", - "timeout": 18304, - "reason": "", - "inprogress": true, - "stages": [ - { - "start-date-time": "2017-01-10 16:19:12", - "end-date-time": "", - "stage-id": 0, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "2017-01-10 16:19:12", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "wait", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "77f00eea-a346-46f1-bf81-837088616b13" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "controller-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 7200, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "wait-data-sync", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "inprogress", - "timeout": 10861, - "total-steps": 5, - "inprogress": true, - "stage-name": "sw-upgrade-controllers" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 1, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "2acdfcdc-c29c-46f1-846d-23838ff608cb" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-1" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 3721, - "total-steps": 5, - "inprogress": false, - "stage-name": "sw-upgrade-compute-hosts" - }, - { - "start-date-time": "", - "end-date-time": "", - "stage-id": 2, - "reason": "", - "current-step": 0, - "steps": [ - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "initial", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 1, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "lock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 1800, - "entity-type": "hosts", - "step-id": 2, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "upgrade-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 900, - "entity-type": "hosts", - "step-id": 3, - "entity-uuids": [ - "fe3ba4e3-e84d-467f-b633-e23df2f86e90" - ], - "step-name": "unlock-hosts", - "result": "initial", - "entity-names": [ - "compute-0" - ], - "reason": "" - }, - { - "start-date-time": "", - "end-date-time": "", - "timeout": 60, - "entity-type": "", - "step-id": 4, - "entity-uuids": [], - "step-name": "system-stabilize", - "result": "initial", - "entity-names": [], - "reason": "" - } - ], - "result": "initial", - "timeout": 3721, - "total-steps": 5, - "inprogress": false, - "stage-name": "sw-upgrade-compute-hosts" - } - ], - "current-stage": 0 - }, - "storage-apply-type": "serial", - "state": "applying", - "default-instance-action": "migrate", - "alarm-restrictions": "relaxed", - "abort-phase": { - "start-date-time": "", - "end-date-time": "", - "phase-name": "abort", - "completion-percentage": 100, - "total-stages": 0, - "stop-at-stage": 0, - "result": "initial", - "timeout": 0, - "reason": "", - "inprogress": false, - "stages": [], - "current-stage": 0 - }, - "build-phase": { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "phase-name": "build", - "completion-percentage": 100, - "total-stages": 1, - "stop-at-stage": 1, - "result": "success", - "timeout": 122, - "reason": "", - "inprogress": false, - "stages": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "stage-id": 0, - "reason": "", - "current-step": 2, - "steps": [ - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "timeout": 60, - "entity-type": "", - "step-id": 0, - "entity-uuids": [], - "step-name": "query-alarms", - "result": "success", - "entity-names": [], - "reason": "" - }, - { - "start-date-time": "2017-01-10 15:23:12", - "end-date-time": "2017-01-10 15:23:12", - "timeout": 60, - "entity-type": "", - "step-id": 1, - "entity-uuids": [], - "step-name": "query-upgrade", - "result": "success", - "entity-names": [], - "reason": "" - } - ], - "result": "success", - "timeout": 121, - "total-steps": 2, - "inprogress": false, - "stage-name": "sw-upgrade-query" - } - ], - "current-stage": 1 - }, - "swift-apply-type": "ignore" - } -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/common.ent deleted file mode 100755 index da0a5ea00..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/common.ent +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - '> - - - - - '> - - - GET'> - POST'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/nfv-vim-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/nfv-vim-api-v1.wadl deleted file mode 100755 index 3b8e87e76..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/nfv-vim-api/v1/nfv-vim-api-v1.wadl +++ /dev/null @@ -1,479 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Lists information about all NFV VIM links. - - - - - - - - - &commonFaults; &getFaults; - - - - - Lists information about all NFV VIM API versions. - - - - - - - - - &commonFaults; &getFaults; - - - - - Lists information about all NFV VIM API orchestration links. - - - - - - - - - &commonFaults; &getFaults; - - - - - Lists information about all NFV VIM API orchestration sw-patch links. - - - - - - - - - &commonFaults; &getFaults; - - - - - Lists information about all NFV VIM API orchestration sw-upgrade links. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Shows detailed information about the current sw-patch strategy. - - - - - - - - - - - - - &commonFaults; &getFaults; - - - - - Creates a sw-patch strategy. - - - - - - - - The apply type for controller hosts: serial or ignore. - - - - - The apply type for storage hosts: serial, parallel or ignore. - - - - - The apply type for compute hosts: serial, parallel or ignore. - - - - - The maximum number of compute hosts to patch in parallel; only applicable if compute-apply-type = parallel. Default value is 2. - - - - - The apply type for swift hosts: serial, parallel or ignore. - - - - - The default instance action: stop-start or migrate. - - - - - The strictness of alarm checks: strict or relaxed. - - - - - - - - - - - - - - - - - - - - - &commonFaults; - - - - - Applies or aborts a sw-patch strategy. - - - - - - - - The action to take: apply-all, apply-stage, abort or abort-stage. - - - - - The stage-id to apply or abort. Only used with apply-stage or abort-stage actions. - - - - - - - - - - - - - - - - - - - - - &commonFaults; - - - - - Deletes the current sw-patch strategy. - - - - - - - - - - - - - - - - - - - - - - - - - - - Shows detailed information about the current sw-upgrade strategy. - - - - - - - - - - - - - &commonFaults; &getFaults; - - - - - Creates a sw-upgrade strategy. - - - - - - - - The apply type for storage hosts: serial, parallel or ignore. - - - - - The apply type for compute hosts: serial, parallel or ignore. - - - - - The maximum number of compute hosts to upgrade in parallel; only applicable if compute-apply-type = parallel. Default value is 2. - - - - - The strictness of alarm checks: strict or relaxed. - - - - - - - - - - - - - - - - - - - - - &commonFaults; - - - - - Applies or aborts a sw-upgrade strategy. - - - - - - - - The action to take: apply-all, apply-stage, abort or abort-stage. - - - - - The stage-id to apply or abort. Only used with apply-stage or abort-stage actions. - - - - - - - - - - - - - - - - - - - - - &commonFaults; - - - - - Deletes the current sw-upgrade strategy. - - - - - - - - - - - - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_install_async-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_install_async-response.json deleted file mode 100755 index 4144fa683..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_install_async-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "info": "Patch installation request sent to compute-0.\n", - "warning": "", - "error": "" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_list-response.json deleted file mode 100755 index c92532ec6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/host_list-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - 'data': [ - { - 'hostname': 'controller-0', - 'nodetype': 'controller', - 'patch_failed': False, - 'ip': u'192.168.204.3', - 'requires_reboot': False, - 'installed': {}, - 'secs_since_ack': 18, - 'missing_pkgs': [], - 'patch_current': True, - 'stale_details': False, - 'to_remove': [], - 'state': 'idle', - 'subfunctions': [ - 'controller' - ], - 'sw_version': '15.12' - }, - { 'hostname': 'compute-0', - 'nodetype': 'compute', - 'patch_failed': False, - 'ip': u'192.168.204.27', - 'requires_reboot': False, - 'installed': {}, - 'secs_since_ack': 18, - 'missing_pkgs': [], - 'patch_current': True, - 'stale_details': False, - 'to_remove': [], - 'state': 'idle', - 'subfunctions': [ - 'compute' - ], - 'sw_version': '15.12' - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_apply-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_apply-response.json deleted file mode 100755 index 486c43b63..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_apply-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "info": "TS_15.12_PATCH_0001 has been applied\n", - "warning": "", - "error": "" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_delete-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_delete-response.json deleted file mode 100755 index 3e5b06c0f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_delete-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "info": "TS_15.12_PATCH_0001 has been deleted\n", - "warning": "", - "error": "" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_list-response.json deleted file mode 100755 index 05895b81f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - 'pd':{ - 'TS_15.12_PATCH_0002':{ - 'status': 'REL', - 'sw_version': '15.12', - 'patchstate': 'Partial-Remove', - 'description': 'Fixes the following Issues:\n compute-4 and storage-0 multiple resets after DOR\n Alarms bogged down for 1 hour after DOR\n Guest Heartbeat cannot be enabled from horizon', - 'warnings': '', - 'summary': 'TS_15.12 Patch 0002', - 'repostate': 'Available', - 'install_instructions': '', - 'requires': [] - }, - 'TS_15.12_PATCH_0001':{ - 'status': 'REL', - 'sw_version': '15.12', - 'patchstate': 'Applied', - 'description': 'Fixes the following Issues:\n hbsClient instrumentation can cause server reset or hang after long soaks', - 'warnings': '', - 'summary': 'TS_15.12 Patch 0001', - 'repostate': 'Applied', - 'install_instructions': 'No special install instructions.', - 'requires': [] - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_remove-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_remove-response.json deleted file mode 100755 index 262372e46..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_remove-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "info": "TS_15.12_PATCH_0001 has been removed from the repo\n", - "warning": "", - "error": "" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_show-response.json deleted file mode 100755 index 1c12809b6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_show-response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "contents": { - "TS_15.12_PATCH_0002": [ - "python-horizon-2013.2.3-r118.x86_64.rpm", - "sysinv-1.0-r81.x86_64.rpm" - ] - }, - "error": "", - "metadata": { - "TS_15.12_PATCH_0002": { - "description": "Fixes the following Issues:\n compute-4 and storage-0 multiple resets after DOR", - "install_instructions": "", - "patchstate": "Partial-Remove", - "repostate": "Available", - "requires": [], - "status": "DEV", - "summary": "TS_15.12 Patch 0002", - "sw_version": "15.12", - "warnings": "" - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_upload-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_upload-response.json deleted file mode 100755 index c0e248dc8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patch_upload-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "info": "TS_15.12_PATCH_0001 is now available\n", - "warning": "", - "error": "" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patching-versions-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patching-versions-response.json deleted file mode 100755 index 8a843f3c6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/patching-versions-response.json +++ /dev/null @@ -1 +0,0 @@ -"Titanium Cloud Patching API, Available versions: /v1" \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/versionv1-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/versionv1-get-response.json deleted file mode 100755 index d73972061..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/api_samples/versionv1-get-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - 'pd':{ - 'TS_15.12_PATCH_0002':{ - 'status': 'REL', - 'sw_version': '15.12', - 'patchstate': 'Partial-Remove', - 'description': 'Fixes the following Issues:\n compute-4 and storage-0 multiple resets after DOR\n CGTS-883 Alarms bogged down for 1 hour after DOR\n CGTS-894 Guest Heartbeat cannot be enabled from horizon', - 'warnings': '', - 'summary': 'TS_15.12 Patch 0002', - 'repostate': 'Available', - 'install_instructions': '', - 'requires': [] - }, - 'TS_15.12_PATCH_0001':{ - 'status': 'REL', - 'sw_version': '15.12', - 'patchstate': 'Applied', - 'description': 'Fixes the following Issues:\n hbsClient instrumentation can cause server reset or hang after long soaks', - 'warnings': '', - 'summary': 'TS_15.12 Patch 0001', - 'repostate': 'Applied', - 'install_instructions': 'No special install instructions.', - 'requires': [] - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/common.ent deleted file mode 100755 index 1cd98a3b1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/common.ent +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - '> - - - - - '> - - - - - - - Any information regarding the request processing. - - - - - Any warnings generated during the request processing. - - - - - Any errors generated during the request processing. - - - '> - - - - - - - The list of patches present in the patching system. - - - - - A patch present in the patching system. - - - - - The status of the patch. - - - - - The software version for which the patch is intended. - - - - - Instructions on how to install the patch. - - - - - The description of any updates present in this patch. - - - - - Any warnings associated with the usage of the patch. - - - - - A brief summary of the patch. - - - - - Whether this patch`s content`s have been added to the patching repository; Applied or Available. - - - - - The state of this patch`s application to hosts; Available, Partial-Apply, Applied, or Partial-Removed. - - - - - A list of patch ids required for this patch to be installed. - - - '> - - - - - - - The RPMs contained within the patch. - - - - - A patch present in the patching system. - - - - - A package included in a patch. - - - - - Any errors associated with the patch. - - - - - Metadata associated with the patch. - - - - - The status of the patch. - - - - - The software version for which the patch is intended. - - - - - Instructions on how to install the patch. - - - - - The description of any updates present in this patch. - - - - - Any warnings associated with the usage of the patch. - - - - - A brief summary of the patch. - - - - - Whether the patch content has been added to the patching repository; Applied or Available. - - - - - The state of the patch regarding application to hosts; Available, Partial-Apply, Applied, or Partial-Removed. - - - - - A list of patch ids required for this patch to be installed. - - - '> - - - - - - - Indicates whether the host requires a reboot. - - - - - The type of the host; controller, compute or storage. - - - - - The list of packages missing from this host. - - - - - The ip address of the host. - - - - - The name of the host. - - - - - The packages installed on this host by the patching system. - - - - - The number of seconds since the host last reported its status. - - - - - Indicates whether a patch installation has failed on the host. - - - - - Indicates whether the details of this host are out of date. - - - - - Indicates whether the host is up to date regarding patches. - - - - - The list of packages that are to be removed from the host. - - - - - The software version running on the host. - - - - - The state of the patch agent: - - - - - idle: The patch agent is in an idle state, ready for installation requests. - - - - - installing: The patch agent is installing or removing patches as needed. - - - - - install-failed: The installation failed on the host. - - - - - install-rejected: The host is unlocked. Lock the node, and run the command again. - - - - - - - - The list of host subfunctions. - - - '> - - - - GET'> - POST'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/patching-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/patching-api-v1.wadl deleted file mode 100755 index d7568652f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/patching-api/v1/patching-api-v1.wadl +++ /dev/null @@ -1,325 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - API version details. - - - - - - - - - - - - - - - - - Lists all patches in the patching system. - Supported query values are all, available, or applied. - - - - - - &listPatchParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific patch. - - - - - - &showPatchParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Uplaods a patch to the patching system. - Note that only one patch may be added per request - - - - - - - - - - - - &responseParameters; - - - - - - - - &postPutFaults; - - - - - - Applies a patch which is in the Available state. - - - - - - &responseParameters; - - - - - - - - &postPutFaults; - - - - - Removes a patch which is in the Applied state. - - - - - - &responseParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a patch which is in the Available state. - - - - - - &responseParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - - Lists information about all Titanium Cloud Patching API versions. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - - Lists all host entities and their patching information. - - - - - - - - The list of host entities. - - - &queryHostsParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Trigger an asynchronous host install on the specified host. - The host must be in the Locked-Disabled-Online state. - - - - - - &responseParameters; - - - - - - - - &commonFaults; &postPutFaults; - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_list-response.json deleted file mode 100644 index 737ce14a7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_list-response.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "sm_servicegroup":[ - { - "status":"", - "name":"controller", - "service_group_name":"web-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":1, - "condition":"", - "uuid":"e3aa5e50-030b-4ab6-a339-929f0be50e5d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"directory-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":2, - "condition":"", - "uuid":"f7b01783-ea3d-44b8-8dd3-9a0c4a1cae9d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"patching-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":3, - "condition":"", - "uuid":"f64bc693-62fa-4f31-b96e-9851c42669ec" - }, - { - "status":"", - "name":"controller", - "service_group_name":"vim-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":4, - "condition":"", - "uuid":"e7dab99d-7bdc-4756-b8b3-b069e7b26e0d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"cloud-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":5, - "condition":"", - "uuid":"149e9f4e-13ba-4d91-9e0e-09905073fda6" - }, - { - "status":"", - "name":"controller", - "service_group_name":"controller-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":6, - "condition":"", - "uuid":"54d46994-9c0e-43bd-8d83-be7396f04f70" - }, - { - "status":"", - "name":"controller", - "service_group_name":"oam-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":7, - "condition":"", - "uuid":"f7b532bf-0dc0-41bd-b38a-75b7747da754" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_show-response.json deleted file mode 100644 index 538d18436..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_group_show-response.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "status":"", - "name":"controller", - "service_group_name":"oam-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":7, - "condition":"", - "uuid":"f7b532bf-0dc0-41bd-b38a-75b7747da754" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_list-response.json deleted file mode 100644 index a9f2199ee..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_list-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "services":[ - { - "status":"", - "state":"enabled-active", - "id":5, - "desired_state":"enabled-active", - "name":"drbd-cgcs" - }, - { - "status":"", - "state":"enabled-active", - "id":3, - "desired_state":"enabled-active", - "name":"drbd-pg" - }, - { - "status":"", - "state":"enabled-active", - "id":4, - "desired_state":"enabled-active", - "name":"drbd-rabbit" - }, - { - "status":"", - "state":"enabled-active", - "id":2, - "desired_state":"enabled-active", - "name":"management-ip" - }, - { - "status":"", - "state":"enabled-active", - "id":1, - "desired_state":"enabled-active", - "name":"oam-ip" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_list-response.json deleted file mode 100644 index e8da62855..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_list-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "nodes":[ - { - "administrative_state":"unlocked", - "ready_state":"disabled", - "name":"controller-0", - "operational_state":"disabled", - "availability_status":"unknown", - "id":2 - }, - { - "administrative_state":"unlocked", - "ready_state":"enabled", - "name":"controller-1", - "operational_state":"enabled", - "availability_status":"available", - "id":1 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_show-response.json deleted file mode 100644 index fbff27b50..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_node_show-response.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "administrative_state":"unlocked", - "ready_state":"enabled", - "name":"controller-1", - "operational_state":"enabled", - "availability_status":"available", - "id":1 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_list-response.json deleted file mode 100644 index dfe3af2f5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_list-response.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "parameters":[ - { - "uuid":"7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "rel":"bookmark" - } - ], - "section":"assignment", - "value":"keystone.assignment.backends.sql.Assignment", - "service":"identity", - "name":"driver" - }, - { - "uuid":"5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "rel":"bookmark" - } - ], - "section":"identity", - "value":"keystone.identity.backends.sql.Identity", - "service":"identity", - "name":"driver" - }, - { - "uuid":"b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "rel":"bookmark" - } - ], - "section":"resource", - "value":"keystone.resource.backends.sql.Resource", - "service":"identity", - "name":"driver" - }, - { - "uuid":"6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "rel":"bookmark" - } - ], - "section":"role", - "value":"keystone.assignment.role_backends.sql.Role", - "service":"identity", - "name":"driver" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_show-response.json deleted file mode 100644 index ad1b80bd6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_parameter_show-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "uuid":"fd5e5e4c-2723-430a-b162-b06b49d94313", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/parameters/fd5e5e4c-2723-430a-b162-b06b49d94313", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/parameters/fd5e5e4c-2723-430a-b162-b06b49d94313", - "rel":"bookmark" - } - ], - "section":"identity", - "updated_at":"2015-12-23T19:07:41.257052+00:00", - "value":"keystone.identity.backends.sql.Identity", - "service":"identity", - "created_at":"2015-12-23T18:54:53.676200+00:00", - "name":"driver" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_show-response.json deleted file mode 100644 index d37f86a3c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/service_show-response.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "status":"", - "state":"enabled-active", - "id":1, - "desired_state":"enabled-active", - "name":"oam-ip" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/smapi-versions-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/smapi-versions-response.json deleted file mode 100644 index 794c6d56b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/smapi-versions-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "default_version": { - "id": "v1", - "links": [ - { - "href": "http://10.10.10.2:7777/v1/", - "rel": "self" - } - ] - }, - "version": [ - { - "id": "v1", - "links": [ - { - "href": "http://10.10.10.2:7777/v1/", - "rel": "self" - } - ] - } - ], - "name": "System Management API", - "description": "System Management API from Wind River" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/versionv1-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/versionv1-get-response.json deleted file mode 100644 index d7984e965..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/api_samples/versionv1-get-response.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "links": [ - { - "href": "http://10.10.10.2:7777/v1/", - "rel": "self" - } - ], - "id": "v1", - "servicenode": [ - { - "href": "http://10.10.10.2:7777/v1/servicenode/", - "rel": "self" - }, - { - "href": "http://10.10.10.2:7777/servicenode/", - "rel": "bookmark" - } - ], - "services": [ - { - "href": "http://10.10.10.2:7777/v1/services/", - "rel": "self" - }, - { - "href": "http://10.10.10.2:7777/services/", - "rel": "bookmark" - } - ], - "sm_sda": [ - { - "href": "http://10.10.10.2:7777/v1/sm_sda/", - "rel": "self" - }, - { - "href": "http://10.10.10.2:7777/sm_sda/", - "rel": "bookmark" - } - ], - "nodes": [ - { - "href": "http://10.10.10.2:7777/v1/nodes/", - "rel": "self" - }, - { - "href": "http://10.10.10.2:7777/nodes/", - "rel": "bookmark" - } - ], - "service_groups": [ - { - "href": "http://10.10.10.2:7777/v1/service_groups/", - "rel": "self" - }, - { - "href": "http://10.10.10.2:7777/service_groups/", - "rel": "bookmark" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/common.ent deleted file mode 100644 index 237ee8f9a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/common.ent +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - - The universally unique identifier for this object. - - - - - For convenience, resources contain links to themselves. - This allows a client to easily obtain rather than construct - resource URIs. The following types of link relations are - associated with resources: a self link containing a versioned - link to the resource, and a bookmark link containing a permanent - link to a resource that is appropriate for long term storage. - - - '> - - - - - - - Administrative state of the node. - - - - - The operational state of the node. - - - - - The name of the node. - - - - - The operational state of the node - - - - - The availability status of the node. - - - - - The id of the node. - - - '> - - - - - - The type of host that the service is running on. - - - - - The name of the service group. - - - - - The name of the node that the service is running on. - - - - - The state of the service. - - - - - The uuid of the service group. - - - '> - - - - - - - The operational state of the service. - - - - - The id of the service. - - - - - The desired state of the service - - - - - The name of the service. - - - - - The name of the host which the service is running on. - - - '> - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/sm-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/sm-api-v1.wadl deleted file mode 100644 index bce8aa1d4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sm-api/v1/sm-api-v1.wadl +++ /dev/null @@ -1,298 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing service. - - - - - - - - - The name of an existing service. - - - - - - - - - - - - - - The unique identifier of an existing node. - - - - - - - - - - - - - - - The unique identifier of an existing service group. - - - - - - - - - - - - - - - - - - API version details. - - - - - - - - - - - - - - - - - Lists information about all Titanium Cloud SM API versions. - - - - - - - - - &commonFaults; &getFaults; - - - - - Shows details for SM API v1. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - List all services running. - - - - - - - - The list of services. - - - &serviceListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific service. - - - - - - &serviceListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - List all controller nodes in the system. - - - - - - - - The list of controller nodes. - - - &serviceNodeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific node. - - - - - - &serviceNodeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List all service groups in the system. - - - - - - - - The list of service groups. - - - &serviceGroupListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific service group. - - - - - - &serviceGroupListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-request.json deleted file mode 100644 index 58ff70926..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "ranges": [["1.2.3.1", "1.2.3.10"], ["1.2.3.20", "1.2.3.29"]], - "network": "1.2.3.0", - "prefix": "24", - "order": "random", - "name": "test1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-response.json deleted file mode 100644 index 7deed09f9..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_add-response.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "network": "1.2.3.0", - "updated_at": null, - "created_at": "2016-11-16T15:50:00.628246+00:00", - "uuid": "dbac9f9d-2d1f-4c48-99d0-77eb9acac856", - "id": 8, - "ranges": [["1.2.3.1", "1.2.3.10"], ["1.2.3.20", "1.2.3.29"]], - "prefix": 24, - "order": "random", - "name": "test1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_list-response.json deleted file mode 100644 index cfed70dc9..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_list-response.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "addrpools": [{ - "network": "192.168.204.0", - "name": "management", - "ranges": [["192.168.204.2", - "192.168.204.254"]], - "prefix": 24, - "order": "random", - "uuid": "d7187d17-8715-4934-8754-4827e604a468" - }, - { - "network": "192.168.205.0", - "name": "infrastructure", - "ranges": [["192.168.205.2", - "192.168.205.254"]], - "prefix": 24, - "order": "random", - "uuid": "7b299949-614c-4f1a-85cb-c46a09827f0c" - }, - { - "network": "10.10.10.0", - "name": "oam", - "ranges": [["10.10.10.1", - "10.10.10.254"]], - "prefix": 24, - "order": "random", - "uuid": "c5fced12-40ad-47fa-ad01-6800d1e418b7" - }, - { - "network": "192.168.58.0", - "name": "group0-data1v4", - "ranges": [["192.168.58.2", - "192.168.58.10"]], - "prefix": 24, - "order": "sequential", - "uuid": "15a1fa4e-d1c0-49f8-80d9-484640fb95a0" - }, - { - "network": "fd00:0:0:2::", - "name": "group0-data1v6", - "ranges": [["fd00:0:0:2::2", - "fd00:0:0:2::a"]], - "prefix": 64, - "order": "random", - "uuid": "04ff8781-9042-4602-a19e-7ed90f0979ad" - }, - { - "network": "192.168.57.0", - "name": "group0-data0v4", - "ranges": [["192.168.57.2", - "192.168.57.10"]], - "prefix": 24, - "order": "random", - "uuid": "366e08ac-a5c8-4554-b019-0a0d2d011e6e" - }, - { - "network": "fd00:0:0:1::", - "name": "group0-data0v6", - "ranges": [["fd00:0:0:1::2", - "fd00:0:0:1::a"]], - "prefix": 64, - "order": "sequential", - "uuid": "950a4587-2baf-4075-994a-98189de51acc" - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-request.json deleted file mode 100644 index 6d2bd8599..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-request.json +++ /dev/null @@ -1,10 +0,0 @@ -[{ - "path": "/ranges", - "value": [["192.168.57.2", "192.168.57.11"]], - "op": "replace" -}, -{ - "path": "/name", - "value": "group0-data0v4-modified", - "op": "replace" -}] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-response.json deleted file mode 100644 index e3a3d2098..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_modify-response.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "network": "192.168.57.0", - "updated_at": "2016-11-16T15:40:54.855820+00:00", - "created_at": "2016-11-09T15:13:59.652107+00:00", - "uuid": "366e08ac-a5c8-4554-b019-0a0d2d011e6e", - "id": 6, - "ranges": [["192.168.57.2", "192.168.57.10"]], - "prefix": 24, - "order": "random", - "name": "group0-data0v4-modified" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_show-response.json deleted file mode 100644 index fccb60b3a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/addrpool_show-response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "network": "192.168.57.0", - "updated_at": null, - "created_at": "2016-11-09T15:13:59.652107+00:00", - "uuid": "366e08ac-a5c8-4554-b019-0a0d2d011e6e", - "id": 6, - "ranges": [["192.168.57.2", - "192.168.57.10"]], - "prefix": 24, - "order": "random", - "name": "group0-data0v4" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_list-response.json deleted file mode 100644 index a50467806..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_list-response.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "ceph_mon": [ - { - "ceph_mon_dev_ctrl0": null, - "ceph_mon_dev_ctrl1": null, - "ceph_mon_gib": 20, - "created_at": "2016-12-08T17:48:06.623435+00:00", - "device_node": null, - "device_path": null, - "hostname": "controller-0", - "links": [ - { - "href": "http://10.10.20.2:6385/v1/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "self" - }, - { - "href": "http://10.10.20.2:6385/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "bookmark" - } - ], - "updated_at": null, - "uuid": "9608cc7f-ace6-4fc7-8eb8-01cfebf6906e" - }, - { - "ceph_mon_dev_ctrl0": null, - "ceph_mon_dev_ctrl1": null, - "ceph_mon_gib": 20, - "created_at": "2016-12-08T19:02:02.359114+00:00", - "device_node": null, - "device_path": null, - "hostname": "controller-1", - "links": [ - { - "href": "http://10.10.20.2:6385/v1/ceph_mon/9c1d1dce-40aa-4c58-bdf2-9715ec870944", - "rel": "self" - }, - { - "href": "http://10.10.20.2:6385/ceph_mon/9c1d1dce-40aa-4c58-bdf2-9715ec870944", - "rel": "bookmark" - } - ], - "updated_at": null, - "uuid": "9c1d1dce-40aa-4c58-bdf2-9715ec870944" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-request.json deleted file mode 100644 index 4d1e0d71d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-request.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "path": "/ceph_mon_gib", - "value": "35", - "op": "replace" - }, - { - "path": "/controller", - "value": "controller-0", - "op": "replace" - } -] - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-response.json deleted file mode 100644 index 96da2be1f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_modify-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "ceph_mon_dev_ctrl1": null, - "uuid": "9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "links": [ - { - "href": "http://10.10.20.2:6385/v1/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "self" - }, - { - "href": "http://10.10.20.2:6385/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "bookmark" - } - ], - "ceph_mon_gib": 35, - "created_at": "2016-12-08T17:48:06.623435+00:00", - "hostname": "controller-0", - "updated_at": null, - "device_node": null, - "device_path": null, - "ceph_mon_dev_ctrl0": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_show-response.json deleted file mode 100644 index b5b2f5f47..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ceph_mon_show-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "ceph_mon_dev_ctrl0": null, - "ceph_mon_dev_ctrl1": null, - "ceph_mon_gib": 20, - "created_at": "2016-12-08T17:48:06.623435+00:00", - "device_node": null, - "device_path": null, - "hostname": "controller-0", - "links": [ - { - "href": "http://10.10.20.2:6385/v1/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "self" - }, - { - "href": "http://10.10.20.2:6385/ceph_mon/9608cc7f-ace6-4fc7-8eb8-01cfebf6906e", - "rel": "bookmark" - } - ], - "updated_at": null, - "uuid": "9608cc7f-ace6-4fc7-8eb8-01cfebf6906e" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certconfig_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certconfig_show-response.json deleted file mode 100644 index 890414027..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certconfig_show-response.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "uuid": "ada8f12c-0ab2-49b7-bad9-946e34cedd69", - "certtype": "tpm_mode", - "expiry_date": "2018-03-27T18:15:23+00:00", - "signature": "ssl_14615813356245445293", - "start_date": "2017-03-27T18:15:23+00:00", - "issuer": null, - "details": { - "state" : { - "controller-0": "tpm-config-applied", - "controller-1": "tpm-config-applied" - } - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certificate_install-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certificate_install-request.json deleted file mode 100644 index 53223c36e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/certificate_install-request.json +++ /dev/null @@ -1 +0,0 @@ -file=@/home/wrsroot/server-with-key.pem diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_list-response.json deleted file mode 100644 index 74ce63447..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_list-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "clusters": [ - { - "cluster_uuid": null, - "type": "ceph", - "uuid": "ba42aa45-7094-4bcd-b094-2848816441a3", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/clusters/ba42aa45-7094-4bcd-b094-2848816441a3", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/clusters/ba42aa45-7094-4bcd-b094-2848816441a3", - "rel": "bookmark" - } - ], - "name": "ceph_cluster" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_show-response.json deleted file mode 100644 index f5aeb2558..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cluster_show-response.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "peers": [ - { - "status": "provisioned", - "hosts": [ - "storage-0" - ], - "name": "group-0", - "uuid": "779145f1-f0ba-42a9-b371-c2ddbd2c3617" - } - ], - "name": "ceph_cluster", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/clusters/ba42aa45-7094-4bcd-b094-2848816441a3", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/clusters/ba42aa45-7094-4bcd-b094-2848816441a3", - "rel": "bookmark" - } - ], - "storage_tiers": [ - { - "href": "http://10.10.10.2:6385/v1/clusters/ba42aa45-7094-4bcd-b094-2848816441a3/storage_tiers", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/clusters/ba42aa45-7094-4bcd-b094-2848816441a3/storage_tiers", - "rel": "bookmark" - } - ], - "created_at": "2018-02-07T04:34:26.738705+00:00", - "tiers": [ - { - "status": "in-use", - "name": "storage", - "uuid": "70184946-7b3e-4833-a4f8-e46edf006e37" - } - ], - "updated_at": null, - "cluster_uuid": null, - "type": "ceph", - "id": 1, - "uuid": "ba42aa45-7094-4bcd-b094-2848816441a3" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-request.json deleted file mode 100644 index cec5dec33..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "community": "guest" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-response.json deleted file mode 100644 index 4328e7449..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_add-response.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "uuid": "73706882-9d7c-4a8f-9409-185ffee0066c", - "created_at": "2014-09-24T20:06:54.386982+00:00", - "updated_at": null, - "community": "guest", - "access": "ro", - "view": ".1" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_list-response.json deleted file mode 100644 index 2cb8f9161..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_list-response.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icommunity": [ - { - "access": "ro", - "uuid": "744cddaa-8a24-4573-aa0e-4f8b535d95b7", - "community": "new", - "view": ".1" - }, - { - "access": "ro", - "uuid": "73706882-9d7c-4a8f-9409-185ffee0066c", - "community": "guest", - "view": ".1" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-request.json deleted file mode 100644 index 9fdb6f423..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/community", - "value": "wrs", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-response.json deleted file mode 100644 index 3169baa4d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_modify-response.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "uuid": "744cddaa-8a24-4573-aa0e-4f8b535d95b7", - "created_at": "2014-09-23T15:01:53.187164+00:00", - "updated_at": "2014-09-24T19:46:40.138145+00:00", - "community": "wrs", - "access": "ro", - "view": ".1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_show-response.json deleted file mode 100644 index ee5abeb62..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/community_show-response.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "uuid": "73706882-9d7c-4a8f-9409-185ffee0066c", - "created_at": "2014-09-24T20:06:54.386982+00:00", - "updated_at": null, - "community": "guest", - "access": "ro", - "view": ".1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_list-response.json deleted file mode 100755 index 3e853f982..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_list-response.json +++ /dev/null @@ -1,71 +0,0 @@ -{"controller_fs": -[ - { - "logical_volume": "backup-lv", - "uuid": "3ce46550-4703-4161-b654-5573045546b3", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.853307+00:00", - "updated_at": "2017-09-15T15:18:38.006260+00:00", - "name": "backup", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, "size": 92 - }, - { - "logical_volume": "cgcs-lv", - "uuid": "d30cc018-9218-403e-a1c2-9a5691a8bffb", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/d30cc018-9218-403e-a1c2-9a5691a8bffb", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/d30cc018-9218-403e-a1c2-9a5691a8bffb", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.896408+00:00", - "updated_at": "2017-09-14T20:59:53.114344+00:00", - "name": "glance", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 36}, - { - "logical_volume": "pgsql-lv", - "uuid": "d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.955574+00:00", - "updated_at": "2017-09-14T20:50:53.032463+00:00", - "name": "database", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 30}, - { - "logical_volume": "scratch-lv", - "uuid": "a12de715-0037-4083-b652-121d3908bc6c", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/a12de715-0037-4083-b652-121d3908bc6c", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/a12de715-0037-4083-b652-121d3908bc6c", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.012491+00:00", - "updated_at": "2017-09-14T18:35:51.859954+00:00", - "name": "scratch", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, - "size": 8}, - { - "logical_volume": "img-conversions-lv", - "uuid": "f7bae4fe-3cd1-4335-8664-a149579b2b47", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/f7bae4fe-3cd1-4335-8664-a149579b2b47", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/f7bae4fe-3cd1-4335-8664-a149579b2b47", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.050789+00:00", - "updated_at": "2017-09-14T18:35:51.876670+00:00", - "name": "img-conversions", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, "size": 20 - }, - { - "logical_volume": "extension-lv", - "uuid": "320dc274-1e35-4700-bfaa-cee2f2d448c5", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/320dc274-1e35-4700-bfaa-cee2f2d448c5", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/320dc274-1e35-4700-bfaa-cee2f2d448c5", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.090570+00:00", - "updated_at": "2017-09-14T18:35:51.893766+00:00", - "name": "extension", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 1 - } -] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-request.json deleted file mode 100644 index ef07b6fa3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-request.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "path": "/name", - "value": "backup", - "op": "replace"}, - { - "path": "/size", - "value": "94", - "op": "replace" - } -] \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-response.json deleted file mode 100644 index b01f204b8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify-response.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "logical_volume": "backup-lv", - "uuid": "3ce46550-4703-4161-b654-5573045546b3", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.853307+00:00", - "updated_at": "2017-09-15T15:18:38.006260+00:00", - "name": "backup", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, - "forisystemid": 1, - "size": 94 -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify_multi-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify_multi-request.json deleted file mode 100644 index 8ad66c370..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_modify_multi-request.json +++ /dev/null @@ -1,18 +0,0 @@ -[ - [{ - "path": "/name", - "value": "extension", - "op": "replace"}, - { - "path": "/size", - "value": "2", - "op": "replace"}], - [{ - "path": "/name", - "value": "backup", - "op": "replace"}, - { - "path": "/size", - "value": "6", - "op": "replace"}] -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_show-response.json deleted file mode 100644 index 1829722ec..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/controller_fs_show-response.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "controller_fs": - [ - { - "logical_volume": "backup-lv", - "uuid": "3ce46550-4703-4161-b654-5573045546b3", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/3ce46550-4703-4161-b654-5573045546b3", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.853307+00:00", - "updated_at": "2017-09-15T15:36:32.304443+00:00", - "name": "backup", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, - "size": 94}, - { - "logical_volume": "cgcs-lv", - "uuid": "d30cc018-9218-403e-a1c2-9a5691a8bffb", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/d30cc018-9218-403e-a1c2-9a5691a8bffb", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/d30cc018-9218-403e-a1c2-9a5691a8bffb", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.896408+00:00", - "updated_at": "2017-09-14T20:59:53.114344+00:00", - "name": "glance", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 36 - }, - { - "logical_volume": "pgsql-lv", - "uuid": "d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/d5fd96f5-05c2-4d4c-b2b7-a46d7b0eb6e7", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:15.955574+00:00", - "updated_at": "2017-09-14T20:50:53.032463+00:00", - "name": "database", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 30 - }, - { - "logical_volume": "scratch-lv", - "uuid": "a12de715-0037-4083-b652-121d3908bc6c", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/a12de715-0037-4083-b652-121d3908bc6c", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/a12de715-0037-4083-b652-121d3908bc6c", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.012491+00:00", - "updated_at": "2017-09-14T18:35:51.859954+00:00", - "name": "scratch", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, - "size": 8}, - { - "logical_volume": "img-conversions-lv", - "uuid": "f7bae4fe-3cd1-4335-8664-a149579b2b47", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/f7bae4fe-3cd1-4335-8664-a149579b2b47", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/f7bae4fe-3cd1-4335-8664-a149579b2b47", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.050789+00:00", - "updated_at": "2017-09-14T18:35:51.876670+00:00", - "name": "img-conversions", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": false, "size": 20}, - { - "logical_volume": "extension-lv", - "uuid": "320dc274-1e35-4700-bfaa-cee2f2d448c5", - "links": [{"href": "http://127.168.204.2:6385/v1/controller_fs/320dc274-1e35-4700-bfaa-cee2f2d448c5", "rel": "self"}, {"href": "http://127.168.204.2:6385/controller_fs/320dc274-1e35-4700-bfaa-cee2f2d448c5", "rel": "bookmark"}], - "created_at": "2017-09-14T17:54:16.090570+00:00", - "updated_at": "2017-09-14T18:35:51.893766+00:00", - "name": "extension", - "state": "available", - "isystem_uuid": "a5b7f26c-423f-41ed-a660-cd8cff4627eb", - "replicated": true, - "size": 1} - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_list-response.json deleted file mode 100644 index f352e6cc8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_list-response.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "icpus" : [ - { - "core" : 0, - "allocated_function" : "Platform", - "cpu" : 0, - "numa_node" : 0, - "uuid" : "d269a009-de03-463e-a553-10944361d38b", - "cpu_family" : "6", - "ihost_uuid" : "0aca08f9-882f-4491-8ffd-7368d20ead48", - "thread" : 0, - "created_at" : "2014-09-18T03:12:15.429976+00:00", - "cpu_model" : "Intel(R) Xeon(R) CPU E5-2690 0 @ 2.90GHz", - "updated_at" : null, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:6385/v1/icpus/d269a009-de03-463e-a553-10944361d38b" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:6385/icpus/d269a009-de03-463e-a553-10944361d38b" - } - ], - "inode_uuid" : "e5d68519-eb07-4b28-8ca2-32bb476eeec1" - }, - { - "core" : 1, - "allocated_function" : "Vswitch", - "cpu" : 1, - "numa_node" : 0, - "uuid" : "f236a371-48e9-4618-8f02-3a7ea0c2d16e", - "cpu_family" : "6", - "ihost_uuid" : "0aca08f9-882f-4491-8ffd-7368d20ead48", - "thread" : 0, - "created_at" : "2014-09-18T03:12:15.432471+00:00", - "cpu_model" : "Intel(R) Xeon(R) CPU E5-2690 0 @ 2.90GHz", - "updated_at" : null, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:6385/v1/icpus/f236a371-48e9-4618-8f02-3a7ea0c2d16e" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:6385/icpus/f236a371-48e9-4618-8f02-3a7ea0c2d16e" - } - ], - "inode_uuid" : "e5d68519-eb07-4b28-8ca2-32bb476eeec1" - }, - -... - - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request-platform.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request-platform.json deleted file mode 100644 index a098a35d5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request-platform.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "function": "platform", - "sockets": [{"0": 1}, {"1": 1}], - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request.json deleted file mode 100644 index 72cef6d8a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-request.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "function": "vswitch", - "sockets": [{"0": 1}] - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-response.json deleted file mode 100644 index 3951e8dc7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_modify-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "allocated_function": "VMs", - "core": 7, - "thread": 0, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/icpus/8a960696-c242-436f-a79c-d904fa6dcbd2", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/icpus/8a960696-c242-436f-a79c-d904fa6dcbd2", - "rel": "bookmark" - } - ], - "inode_uuid": "4ed560e2-c3a1-4d41-8b00-6af257e6ac75", - "function": null, - "numa_node": 1, - "created_at": "2014-09-26T02:01:36.514217+00:00", - "cpu_model": "Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz", - "capabilities": { - - }, - "updated_at": "2014-09-26T11:58:20.586235+00:00", - "num_cores_on_processor1": null, - "ihost_uuid": "22d5827c-7a04-4a3c-9509-e8849b9a595d", - "num_cores_on_processor3": null, - "num_cores_on_processor2": null, - "num_cores_on_processor0": null, - "cpu_family": "6", - "cpu": 15, - "uuid": "8a960696-c242-436f-a79c-d904fa6dcbd2" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_show-response.json deleted file mode 100644 index 493a2e644..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/cpu_show-response.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "core" : 0, - "allocated_function" : "Platform", - "function" : null, - "uuid" : "d269a009-de03-463e-a553-10944361d38b", - "cpu_family" : "6", - "ihost_uuid" : "0aca08f9-882f-4491-8ffd-7368d20ead48", - "created_at" : "2014-09-18T03:12:15.429976+00:00", - "num_cores_on_processor1" : null, - "capabilities" : {}, - "num_cores_on_processor3" : null, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:6385/v1/icpus/d269a009-de03-463e-a553-10944361d38b" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:6385/icpus/d269a009-de03-463e-a553-10944361d38b" - } - ], - "num_cores_on_processor2" : null, - "cpu" : 0, - "numa_node" : 0, - "num_cores_on_processor0" : null, - "thread" : 0, - "cpu_model" : "Intel(R) Xeon(R) CPU E5-2690 0 @ 2.90GHz", - "updated_at" : null, - "inode_uuid" : "e5d68519-eb07-4b28-8ca2-32bb476eeec1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_list-response.json deleted file mode 100644 index 836966e21..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_list-response.json +++ /dev/null @@ -1,388 +0,0 @@ -{ - "pci_devices": [ - { - "uuid": "b2b411a8-1522-4d22-9679-e9fb8b24813b", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "440FX - 82441FX PMC [Natoma]", - "created_at": "2015-11-02T02:15:23.608001+00:00", - "sriov_totalvfs": null, - "pdevice_id": "1237", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/b2b411a8-1522-4d22-9679-e9fb8b24813b", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/b2b411a8-1522-4d22-9679-e9fb8b24813b", - "rel": "bookmark" - } - ], - "pclass": "Host bridge", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:00.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "60000", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_00_0" - }, - { - "uuid": "49139dd2-3e46-4056-b91d-c7d5cb453524", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82371SB PIIX3 ISA [Natoma\/Triton II]", - "created_at": "2015-11-02T02:15:23.615088+00:00", - "sriov_totalvfs": null, - "pdevice_id": "7000", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/49139dd2-3e46-4056-b91d-c7d5cb453524", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/49139dd2-3e46-4056-b91d-c7d5cb453524", - "rel": "bookmark" - } - ], - "pclass": "ISA bridge", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:01.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "60100", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_01_0" - }, - { - "uuid": "4a11043c-c1fe-463f-ab13-01e0b6c12376", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82371AB\/EB\/MB PIIX4 IDE", - "created_at": "2015-11-02T02:15:23.620579+00:00", - "sriov_totalvfs": null, - "pdevice_id": "7111", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/4a11043c-c1fe-463f-ab13-01e0b6c12376", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/4a11043c-c1fe-463f-ab13-01e0b6c12376", - "rel": "bookmark" - } - ], - "pclass": "IDE interface", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:01.1", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "1018a", - "driver": null, - "psvendor": "-p8a", - "enabled": "False", - "name": "pci_0000_00_01_1" - }, - { - "uuid": "09746d46-9ca9-4ef4-a7a4-0fa46c2a9165", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "VirtualBox Graphics Adapter", - "created_at": "2015-11-02T02:15:23.627342+00:00", - "sriov_totalvfs": null, - "pdevice_id": "beef", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/09746d46-9ca9-4ef4-a7a4-0fa46c2a9165", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/09746d46-9ca9-4ef4-a7a4-0fa46c2a9165", - "rel": "bookmark" - } - ], - "pclass": "VGA compatible controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "InnoTek Systemberatung GmbH", - "pciaddr": "0000:00:02.0", - "numa_node": -1, - "pvendor_id": "80ee", - "pclass_id": "30000", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_02_0" - }, - { - "uuid": "56686ced-6dd7-445a-aed9-6ff7399b322e", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82540EM Gigabit Ethernet Controller", - "created_at": "2015-11-02T02:15:23.632929+00:00", - "sriov_totalvfs": null, - "pdevice_id": "100e", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/56686ced-6dd7-445a-aed9-6ff7399b322e", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/56686ced-6dd7-445a-aed9-6ff7399b322e", - "rel": "bookmark" - } - ], - "pclass": "Ethernet controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "PRO\/1000 MT Desktop Adapter", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:03.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "20000", - "driver": null, - "psvendor": "Intel Corporation", - "enabled": "False", - "name": "pci_0000_00_03_0" - }, - { - "uuid": "93c27653-7858-4025-babf-e72e4b1ba45e", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "VirtualBox Guest Service", - "created_at": "2015-11-02T02:15:23.639261+00:00", - "sriov_totalvfs": null, - "pdevice_id": "cafe", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/93c27653-7858-4025-babf-e72e4b1ba45e", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/93c27653-7858-4025-babf-e72e4b1ba45e", - "rel": "bookmark" - } - ], - "pclass": "System peripheral", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "InnoTek Systemberatung GmbH", - "pciaddr": "0000:00:04.0", - "numa_node": -1, - "pvendor_id": "80ee", - "pclass_id": "88000", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_04_0" - }, - { - "uuid": "c67c2c89-fc01-4bc7-97a8-d913f5623b7e", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "KeyLargo\/Intrepid USB", - "created_at": "2015-11-02T02:15:23.644716+00:00", - "sriov_totalvfs": null, - "pdevice_id": "3f", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/c67c2c89-fc01-4bc7-97a8-d913f5623b7e", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/c67c2c89-fc01-4bc7-97a8-d913f5623b7e", - "rel": "bookmark" - } - ], - "pclass": "USB controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Apple Inc.", - "pciaddr": "0000:00:06.0", - "numa_node": -1, - "pvendor_id": "106b", - "pclass_id": "c0310", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_06_0" - }, - { - "uuid": "a769a7d0-c32f-4072-ba2e-73b754361ac6", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82371AB\/EB\/MB PIIX4 ACPI", - "created_at": "2015-11-02T02:15:23.651222+00:00", - "sriov_totalvfs": null, - "pdevice_id": "7113", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/a769a7d0-c32f-4072-ba2e-73b754361ac6", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/a769a7d0-c32f-4072-ba2e-73b754361ac6", - "rel": "bookmark" - } - ], - "pclass": "Bridge", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:07.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "68000", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_07_0" - }, - { - "uuid": "40fc39e7-d6bb-4ae5-9c98-0e7a0c71dc6f", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82540EM Gigabit Ethernet Controller", - "created_at": "2015-11-02T02:15:23.657036+00:00", - "sriov_totalvfs": null, - "pdevice_id": "100e", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/40fc39e7-d6bb-4ae5-9c98-0e7a0c71dc6f", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/40fc39e7-d6bb-4ae5-9c98-0e7a0c71dc6f", - "rel": "bookmark" - } - ], - "pclass": "Ethernet controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "PRO\/1000 MT Desktop Adapter", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:08.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "20000", - "driver": null, - "psvendor": "Intel Corporation", - "enabled": "False", - "name": "pci_0000_00_08_0" - }, - { - "uuid": "a674ae59-aa08-4bef-85a5-ad209809725d", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "Virtio network device", - "created_at": "2015-11-02T02:15:23.662643+00:00", - "sriov_totalvfs": null, - "pdevice_id": "1000", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/a674ae59-aa08-4bef-85a5-ad209809725d", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/a674ae59-aa08-4bef-85a5-ad209809725d", - "rel": "bookmark" - } - ], - "pclass": "Ethernet controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "Device 0001", - "sriov_vfs_pci_address": "", - "pvendor": "Red Hat, Inc", - "pciaddr": "0000:00:09.0", - "numa_node": -1, - "pvendor_id": "1af4", - "pclass_id": "20000", - "driver": null, - "psvendor": "Red Hat, Inc", - "enabled": "False", - "name": "pci_0000_00_09_0" - }, - { - "uuid": "67d75625-12a6-48ca-8e93-40a704eb7bf7", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "Virtio network device", - "created_at": "2015-11-02T02:15:23.668183+00:00", - "sriov_totalvfs": null, - "pdevice_id": "1000", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/67d75625-12a6-48ca-8e93-40a704eb7bf7", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/67d75625-12a6-48ca-8e93-40a704eb7bf7", - "rel": "bookmark" - } - ], - "pclass": "Ethernet controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "Device 0001", - "sriov_vfs_pci_address": "", - "pvendor": "Red Hat, Inc", - "pciaddr": "0000:00:0a.0", - "numa_node": -1, - "pvendor_id": "1af4", - "pclass_id": "20000", - "driver": null, - "psvendor": "Red Hat, Inc", - "enabled": "False", - "name": "pci_0000_00_0a_0" - }, - { - "uuid": "4b1d9cf8-81bd-40cb-b873-594faa9d23ef", - "sriov_numvfs": 0, - "updated_at": null, - "pdevice": "82801FB\/FBM\/FR\/FW\/FRW (ICH6 Family) USB2 EHCI Controller", - "created_at": "2015-11-02T02:15:23.673775+00:00", - "sriov_totalvfs": null, - "pdevice_id": "265c", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/4b1d9cf8-81bd-40cb-b873-594faa9d23ef", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/4b1d9cf8-81bd-40cb-b873-594faa9d23ef", - "rel": "bookmark" - } - ], - "pclass": "USB controller", - "host_uuid": "ae8d3ec5-b2e1-425d-a73f-d7c7b00551fd", - "psdevice": "", - "sriov_vfs_pci_address": "", - "pvendor": "Intel Corporation", - "pciaddr": "0000:00:0b.0", - "numa_node": -1, - "pvendor_id": "8086", - "pclass_id": "c0320", - "driver": null, - "psvendor": "", - "enabled": "False", - "name": "pci_0000_00_0b_0" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-request.json deleted file mode 100644 index 89676fdff..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-request.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "path": "/enabled", - "value": "True", - "op": "replace" - }, - { - "path": "/name", - "value": "pci_0000_09_00_0", - "op": "replace" - } -] \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-response.json deleted file mode 100644 index 66753970a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_modify-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "rel": "bookmark" - } - ], - "enabled": "True", - "updated_at": "2015-11-04T18:48:09.051858+00:00", - "extra_info": null, - "uuid": "8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "pdevice": "Coleto Creek PCIe Endpoint", - "psvendor": "Intel Corporation", - "psdevice": "Device 35c5", - "pclass_id": "b4000", - "pvendor": "Intel Corporation", - "sriov_numvfs": 32, - "driver": null, - "host_uuid": "aa3fabca-e007-485b-bea9-4f1a0ad9049a", - "name": "pci_0000_09_00_0", - "numa_node": 0, - "created_at": "2015-11-04T04:22:59.406921+00:00", - "pdevice_id": "435", - "pclass": "Co-processor", - "sriov_vfs_pci_address": "0000:09:01.0,0000:09:01.1,0000:09:01.2,0000:09:01.3,0000:09:01.4,0000:09:01.5,0000:09:01.6,0000:09:01.7,0000:09:02.0,0000:09:02.1,0000:09:02.2,0000:09:02.3,0000:09:02.4,0000:09:02.5,0000:09:02.6,0000:09:02.7,0000:09:03.0,0000:09:03.1,0000:09:03.2,0000:09:03.3,0000:09:03.4,0000:09:03.5,0000:09:03.6,0000:09:03.7,0000:09:04.0,0000:09:04.1,0000:09:04.2,0000:09:04.3,0000:09:04.4,0000:09:04.5,0000:09:04.6,0000:09:04.7", - "sriov_totalvfs": 32, - "pciaddr": "0000:09:00.0", - "pvendor_id": "8086" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_show-response.json deleted file mode 100644 index c07639e1f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/device_show-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "uuid": "8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "sriov_numvfs": 32, - "updated_at": "2015-11-04T18:48:09.051858+00:00", - "pdevice": "Coleto Creek PCIe Endpoint", - "created_at": "2015-11-04T04:22:59.406921+00:00", - "sriov_totalvfs": 32, - "pdevice_id": "435", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/pci_devices\/8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/pci_devices\/8fdab3b1-c90a-421b-ba5f-5dc2d677dac6", - "rel": "bookmark" - } - ], - "pclass": "Co-processor", - "host_uuid": "aa3fabca-e007-485b-bea9-4f1a0ad9049a", - "psdevice": "Device 35c5", - "sriov_vfs_pci_address": "0000:09:01.0,0000:09:01.1,0000:09:01.2,0000:09:01.3,0000:09:01.4,0000:09:01.5,0000:09:01.6,0000:09:01.7,0000:09:02.0,0000:09:02.1,0000:09:02.2,0000:09:02.3,0000:09:02.4,0000:09:02.5,0000:09:02.6,0000:09:02.7,0000:09:03.0,0000:09:03.1,0000:09:03.2,0000:09:03.3,0000:09:03.4,0000:09:03.5,0000:09:03.6,0000:09:03.7,0000:09:04.0,0000:09:04.1,0000:09:04.2,0000:09:04.3,0000:09:04.4,0000:09:04.5,0000:09:04.6,0000:09:04.7", - "pvendor": "Intel Corporation", - "pciaddr": "0000:09:00.0", - "numa_node": 0, - "pvendor_id": "8086", - "pclass_id": "b4000", - "driver": null, - "psvendor": "Intel Corporation", - "enabled": "True", - "name": "pci_0000_09_00_0" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_list-response.json deleted file mode 100644 index e22354d7d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_list-response.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "idisks": [ - { - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-1.0", - "uuid": "8352385e-b13b-488c-abca-f38db6a5e234", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/idisks/8352385e-b13b-488c-abca-f38db6a5e234", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/idisks/8352385e-b13b-488c-abca-f38db6a5e234", - "rel": "bookmark" - } - ], - "ihost_uuid": "422f7a16-90b7-49b9-856e-e7a2527e3da1", - "created_at": "2018-02-06T07:04:49.098057+00:00", - "updated_at": "2018-02-06T08:44:03.928696+00:00", - "device_node": "/dev/sda", - "available_mib": 0, - "ipv_uuid": null, - "serial_id": "VB7f149a22-bb415a22", - "device_type": "HDD", - "device_wwn": null, - "istor_uuid": null, - "device_num": 2048, - "capabilities": { - "model_num": "VBOX HARDDISK", - "stor_function": "rootfs" - }, - "rpm": "Undetermined", - "size_mib": 61440, - "device_id": "ata-VBOX_HARDDISK_VB7f149a22-bb415a22" - }, - { - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0", - "uuid": "0612ae5a-4b16-47a4-bb2b-d2776e6c0959", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/idisks/0612ae5a-4b16-47a4-bb2b-d2776e6c0959", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/idisks/0612ae5a-4b16-47a4-bb2b-d2776e6c0959", - "rel": "bookmark" - } - ], - "ihost_uuid": "422f7a16-90b7-49b9-856e-e7a2527e3da1", - "created_at": "2018-02-06T07:04:49.127350+00:00", - "updated_at": "2018-02-06T08:44:03.987878+00:00", - "device_node": "/dev/sdb", - "available_mib": 51197, - "ipv_uuid": null, - "serial_id": "VBa3c3ba49-6d2fb877", - "device_type": "HDD", - "device_wwn": null, - "istor_uuid": null, - "device_num": 2064, - "capabilities": { - "model_num": "VBOX HARDDISK" - }, - "rpm": "Undetermined", - "size_mib": 61440, - "device_id": "ata-VBOX_HARDDISK_VBa3c3ba49-6d2fb877" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_modify-request.json deleted file mode 100644 index a232ebab3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/partition_table", - "value": "gpt", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_show-response.json deleted file mode 100644 index 11c9ddafa..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/disk_show-response.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-1.0", - "uuid": "8352385e-b13b-488c-abca-f38db6a5e234", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/idisks/8352385e-b13b-488c-abca-f38db6a5e234", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/idisks/8352385e-b13b-488c-abca-f38db6a5e234", - "rel": "bookmark" - } - ], - "ihost_uuid": "422f7a16-90b7-49b9-856e-e7a2527e3da1", - "partitions": [ - { - "href": "http://10.10.10.2:6385/v1/idisks/8352385e-b13b-488c-abca-f38db6a5e234/partitions", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/idisks/8352385e-b13b-488c-abca-f38db6a5e234/partitions", - "rel": "bookmark" - } - ], - "updated_at": "2018-02-06T08:45:03.851208+00:00", - "device_node": "/dev/sda", - "available_mib": 0, - "ipv_uuid": null, - "serial_id": "VB7f149a22-bb415a22", - "device_type": "HDD", - "device_wwn": null, - "istor_uuid": null, - "device_num": 2048, - "capabilities": { - "model_num": "VBOX HARDDISK", - "stor_function": "rootfs" - }, - "rpm": "Undetermined", - "created_at": "2018-02-06T07:04:49.098057+00:00", - "size_mib": 61440, - "device_id": "ata-VBOX_HARDDISK_VB7f149a22-bb415a22" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-request.json deleted file mode 100644 index 080dac5e1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-request.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "path": "/nameservers", - "value": "8.8.8.99,8.8.4.99", - "op": "replace" - }, - { - "path": "/action", - "value": "apply", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-response.json deleted file mode 100644 index 96e23d162..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_modify-response.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "links": [ - { - "href": "http://192.168.204.2:6385/v1/idnss/fab4ff99-ed44-41d0-9e04-2efb3138cf03", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/idnss/fab4ff99-ed44-41d0-9e04-2efb3138cf03", - "rel": "bookmark" - } - ], - "nameservers": "8.8.8.99,8.8.4.99", - "created_at": "2014-09-30T14:42:16.676726+00:00", - "updated_at": "2014-10-01T15:13:42.356658+00:00", - "isystem_uuid": "ce178041-2b2c-405d-bf87-f19334a35582", - "action": null, - "forisystemid": 1, - "uuid": "fab4ff99-ed44-41d0-9e04-2efb3138cf03" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_show-response.json deleted file mode 100644 index 0ba8807ba..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/dns_show-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "idnss": [ - { - "links": [ - { - "href": "http://192.168.204.2:6385/v1/idnss/fab4ff99-ed44-41d0-9e04-2efb3138cf03", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/idnss/fab4ff99-ed44-41d0-9e04-2efb3138cf03", - "rel": "bookmark" - } - ], - "nameservers": "8.8.8.4,8.8.4.5", - "created_at": "2014-09-30T14:42:16.676726+00:00", - "updated_at": "2014-10-01T15:10:42.328364+00:00", - "isystem_uuid": "ce178041-2b2c-405d-bf87-f19334a35582", - "uuid": "fab4ff99-ed44-41d0-9e04-2efb3138cf03" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-request.json deleted file mode 100644 index 684d2234c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-request.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "op": "replace", - "path": "/link_util", - "value": "40" - }, - { - "op": "replace", - "path": "/rtt_ms", - "value": "0.2" - }, - { - "op": "replace", - "path": "/action", - "value": "apply" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-response.json deleted file mode 100644 index 4ac867d5c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_modify-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "action": null, - "created_at": "2015-12-14T21:20:23.329867+00:00", - "forisystemid": 1, - "isystem_uuid": "88770f18-1ade-4222-b08f-dadd8aa78b32", - "link_util": 40, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/drbdconfigs/e23b99b4-62b3-4bcc-a78b-ece63bc0edc5", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/drbdconfigs/e23b99b4-62b3-4bcc-a78b-ece63bc0edc5", - "rel": "bookmark" - } - ], - "num_parallel": 1, - "rtt_ms": 0.2, - "updated_at": "2015-12-14T21:20:26.792494+00:00", - "uuid": "e23b99b4-62b3-4bcc-a78b-ece63bc0edc5" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_show-response.json deleted file mode 100644 index ea1e52290..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/drbdsync_show-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "drbdconfigs": [ - { - "created_at": "2015-12-14T21:20:23.329867+00:00", - "isystem_uuid": "88770f18-1ade-4222-b08f-dadd8aa78b32", - "link_util": 40, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/drbdconfigs/e23b99b4-62b3-4bcc-a78b-ece63bc0edc5", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/drbdconfigs/e23b99b4-62b3-4bcc-a78b-ece63bc0edc5", - "rel": "bookmark" - } - ], - "num_parallel": 1, - "rtt_ms": 0.2, - "updated_at": "2015-12-14T22:15:03.909772+00:00", - "uuid": "e23b99b4-62b3-4bcc-a78b-ece63bc0edc5" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-request.json deleted file mode 100644 index 89a129b1f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-request.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "path":"/oam_c1_ip", - "value":"10.10.10.4", - "op":"replace" - }, - { - "path":"/action", - "value":"apply", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-response.json deleted file mode 100644 index d48b487e1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_modify-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "iextoams":[ - { - "links":[ - { - "href":"http://192.168.204.2:6385/v1/iextoams/2056b372-10a5-47d3-b1da-8957c370b630", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/iextoams/2056b372-10a5-47d3-b1da-8957c370b630", - "rel":"bookmark" - } - ], - "created_at":"2014-09-30T14:42:16.656226+00:00", - "updated_at":"2014-10-01T17:35:43.131331+00:00", - "oam_subnet":"10.10.10.0/24", - "oam_gateway_ip":"10.10.10.1", - "oam_floating_ip":"10.10.10.2", - "oam_c0_ip":"10.10.10.3", - "oam_c1_ip":"10.10.10.4", - "isystem_uuid":"ce178041-2b2c-405d-bf87-f19334a35582", - "uuid":"2056b372-10a5-47d3-b1da-8957c370b630" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_show-response.json deleted file mode 100644 index c56609927..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/extoam_show-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "iextoams":[ - { - "links":[ - { - "href":"http://192.168.204.2:6385/v1/iextoams/2056b372-10a5-47d3-b1da-8957c370b630", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/iextoams/2056b372-10a5-47d3-b1da-8957c370b630", - "rel":"bookmark" - } - ], - "created_at":"2014-09-30T14:42:16.656226+00:00", - "updated_at":"2014-10-01T17:35:43.131331+00:00", - "oam_subnet":"10.10.10.0/24", - "oam_ifcs":"eth0", - "oam_gateway_ip":"10.10.10.1", - "oam_floating_ip":"10.10.10.2", - "oam_c0_ip":"10.10.10.3", - "oam_c1_ip":"10.10.10.4", - "isystem_uuid":"ce178041-2b2c-405d-bf87-f19334a35582", - "uuid":"2056b372-10a5-47d3-b1da-8957c370b630" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/firewall_rules_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/firewall_rules_show-response.json deleted file mode 100644 index 133a85925..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/firewall_rules_show-response.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "firewallrules": [ - { - "firewall_sig": "ab9695c4ef143d72317a860c6db7f699", - "uuid": "bc276605-7ae2-476a-a8c0-01f097f5177e", - "updated_at": "2018-03-02T15:59:14.114812+00:00" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-request.json deleted file mode 100644 index 0495d6db5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/action", - "value":"unlock", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-response.json deleted file mode 100644 index c347cd451..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_action-response.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "ports":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/ports", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/ports", - "rel":"bookmark" - } - ], - "reserved":"False", - "idisks":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/idisks", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/idisks", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T15:31:31.565491+00:00", - "bm_username":"", - "iprofile_uuid":null, - "id":5, - "forisystemid":1, - "icpus":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/icpus", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/icpus", - "rel":"bookmark" - } - ], - "uptime":107, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923", - "rel":"bookmark" - } - ], - "mgmt_ip":"192.168.204.5", - "hostname":"storage-0", - "istors":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/istors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/istors", - "rel":"bookmark" - } - ], - "capabilities":{ - "stor_function":"monitor" - }, - "availability":"online", - "location":{ - "locn":"" - }, - "config_applied":"a47cfb0d-3892-4608-8012-371ce45faf55", - "invprovision":"provisioned", - "administrative":"locked", - "personality":"storage", - "iinterfaces":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/iinterfaces", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/iinterfaces", - "rel":"bookmark" - } - ], - "config_status":"", - "config_target":null, - "isystem_uuid":"e79e74a5-e08e-41ab-9277-5e01457a0e5e", - "mgmt_mac":"08:00:27:fa:e2:1c", - "task":"Unlocking", - "recordtype":"standard", - "operational":"disabled", - "created_at":"2014-10-01T21:12:09.899675+00:00", - "uuid":"0dad0322-f289-40ca-9059-67cd673a0923", - "action":"none", - "bm_type":null, - "serialId":null, - "boot_device": "sda", - "rootfs_device": "sda", - "install_output": "text", - "console": "ttyS0,115200", - "inodes":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/inodes", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/inodes", - "rel":"bookmark" - } - ], - "imemorys":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/imemorys", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923/imemorys", - "rel":"bookmark" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-request.json deleted file mode 100644 index 58237c536..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-request.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "hostname":"compute-0", - "personality":"compute", - "subfunctions":"compute_lowlatency", - "mgmt_mac":"11:22:33:44:55:66", - "mgmt_ip":"192.168.204.200", - "bm_type":"bmc", - "bm_ip":"10.10.10.240", - "bm_username":"bm_user", - "bm_password":"bm_user_pwd", - "boot_device": "sda", - "rootfs_device": "sda", - "install_output": "text", - "console": "ttyS0,115200", - "ttys_dcd":"True", - "location":{"locn":"West tower, Room B"} -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-response.json deleted file mode 100644 index 2a473f2c8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_add-response.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "ports":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ports", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ports", - "rel":"bookmark" - } - ], - "reserved":"False", - "idisks":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/idisks", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/idisks", - "rel":"bookmark" - } - ], - "subfunctions":"compute_lowlatency", - "bm_ip":"10.10.10.240", - "updated_at":null, - "ihost_action":null, - "bm_username":"bm_user", - "id":3, - "serialid":null, - "availability":"offline", - "forisystemid":1, - "vim_progress_status":null, - "icpus":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/icpus", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/icpus", - "rel":"bookmark" - } - ], - "uptime":0, - "links":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755", - "rel":"bookmark" - } - ], - "mgmt_ip":"192.168.204.200", - "hostname":"compute-0", - "istors":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/istors", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/istors", - "rel":"bookmark" - } - ], - "capabilities":{ - - }, - "iprofile_uuid":null, - "location":{ - - }, - "config_applied":null, - "invprovision":null, - "mgmt_mac": "11:22:33:44:55:66", "administrative":"locked", - "personality":"compute", - "iinterfaces":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/iinterfaces", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/iinterfaces", - "rel":"bookmark" - } - ], - "isystem_uuid":"b3bbc885-2389-43e8-8b00-54a3ad6614af", - "config_target":null, - "ethernet_ports":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ethernet_ports", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ethernet_ports", - "rel":"bookmark" - } - ], - "uuid":"88d437b5-aa2c-4f1b-8f27-d13330dca755", - "subfunction_oper":"disabled", - "task":null, - "ttys_dcd":null, - "recordtype":"standard", - "operational":"disabled", - "created_at": "2015-05-06T17:06:13.506319+00:00", "subfunction_avail":"offline", - "ipvs":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ipvs", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ipvs", - "rel":"bookmark" - } - ], - "ilvgs":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ilvgs", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ilvgs", - "rel":"bookmark" - } - ], - "action":"none", - "bm_type":"bmc", - "boot_device": "sda", - "rootfs_device": "sda", - "install_output": "text", - "console": "ttyS0,115200", - "ports":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ports", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/ports", - "rel":"bookmark" - } - ], - "inodes":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/inodes", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/inodes", - "rel":"bookmark" - } - ], - "imemorys":[ - { - "href": "http://192.168.204.2:6385/v1/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/imemorys", - "rel":"self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/88d437b5-aa2c-4f1b-8f27-d13330dca755/imemorys", - "rel":"bookmark" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-request.json deleted file mode 100644 index 6b15e1cef..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "prefix": "24", - "interface_uuid": "4e49a054-3c72-43b8-8e48-1f63dcc5ff7d", - "address": "192.168.59.3" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-response.json deleted file mode 100644 index 39940958f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_add-response.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "forihostid": 3, - "uuid": "5dc26260-d825-424d-88d2-b1906022c374", - "created_at": "2016-11-16T16:03:14.614922+00:00", - "updated_at": null, - "pool_uuid": null, - "prefix": 24, - "address": "192.168.59.3", - "enable_dad": false, - "ifname": "vlan11", - "interface_uuid": "4e49a054-3c72-43b8-8e48-1f63dcc5ff7d", - "id": 25, - "name": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_list-response.json deleted file mode 100644 index 394bd952c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_list-response.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "addresses": [{ - "forihostid": 1, - "uuid": "268241c3-99b8-4d0a-9172-49d2ff9681bc", - "prefix": 24, - "address": "192.168.204.3", - "enable_dad": false, - "ifname": "enp0s8", - "interface_uuid": "49e994d5-2733-4fab-8e1b-54523afdd2d9", - "pool_uuid": "d7187d17-8715-4934-8754-4827e604a468" - }, - { - "forihostid": 1, - "uuid": "1a3fb522-be74-4563-a418-6063f9fcf8a1", - "prefix": 24, - "address": "192.168.205.3", - "enable_dad": false, - "ifname": "eth0.99", - "interface_uuid": "434df886-4709-4187-8639-ec10d0784a36", - "pool_uuid": "7b299949-614c-4f1a-85cb-c46a09827f0c" - }, - { - "forihostid": 1, - "uuid": "7040521a-6a59-49ad-a703-0fc35573d4db", - "prefix": 24, - "address": "192.168.59.2", - "enable_dad": false, - "ifname": "vlan11", - "interface_uuid": "280baad6-7791-41a5-97f9-f8f8e0f879c5", - "pool_uuid": null - }, - { - "forihostid": 1, - "uuid": "e7169f61-9b8e-455f-bac3-936b774d4b69", - "prefix": 64, - "address": "fd00:0:0:b::2", - "enable_dad": true, - "ifname": "vlan11", - "interface_uuid": "280baad6-7791-41a5-97f9-f8f8e0f879c5", - "pool_uuid": null - }, - { - "forihostid": 1, - "uuid": "08608f9c-d5f7-4f29-bd71-2d6feee22a6e", - "prefix": 24, - "address": "192.168.58.2", - "enable_dad": false, - "ifname": "data1", - "interface_uuid": "6db88b94-fbaa-47a9-95f5-0633036a1a27", - "pool_uuid": "15a1fa4e-d1c0-49f8-80d9-484640fb95a0" - }, - { - "forihostid": 1, - "uuid": "53bb0f7e-1547-4635-9faf-4d9b8dad2698", - "prefix": 64, - "address": "fd00:0:0:2::7", - "enable_dad": true, - "ifname": "data1", - "interface_uuid": "6db88b94-fbaa-47a9-95f5-0633036a1a27", - "pool_uuid": "04ff8781-9042-4602-a19e-7ed90f0979ad" - }, - { - "forihostid": 1, - "uuid": "369c552a-1da6-4181-afdb-778d3b90d4c9", - "prefix": 24, - "address": "192.168.57.2", - "enable_dad": false, - "ifname": "data0", - "interface_uuid": "7a3331e2-88c4-4c30-a49e-67bf924661b4", - "pool_uuid": "366e08ac-a5c8-4554-b019-0a0d2d011e6e" - }, - { - "forihostid": 1, - "uuid": "af3c8e3c-57ad-4eda-ad5a-f1dbab93875b", - "prefix": 64, - "address": "fd00:0:0:1::2", - "enable_dad": true, - "ifname": "data0", - "interface_uuid": "7a3331e2-88c4-4c30-a49e-67bf924661b4", - "pool_uuid": "950a4587-2baf-4075-994a-98189de51acc" - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_show-response.json deleted file mode 100644 index fe2e8fc86..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_addr_show-response.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "forihostid": 1, - "uuid": "369c552a-1da6-4181-afdb-778d3b90d4c9", - "created_at": "2016-11-09T15:14:09.409615+00:00", - "updated_at": null, - "pool_uuid": "366e08ac-a5c8-4554-b019-0a0d2d011e6e", - "prefix": 24, - "address": "192.168.57.2", - "enable_dad": false, - "ifname": "data0", - "interface_uuid": "7a3331e2-88c4-4c30-a49e-67bf924661b4", - "id": 17, - "name": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_add-response.json deleted file mode 100755 index 7e33f9127..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_add-response.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "success":"compute-0, compute-1" - "error":"compute-2: Host-add Rejected: Host with mgmt_mac 08:00:28:A9:54:19 already exists" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_export-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_export-response.json deleted file mode 100644 index 1ff9a8199..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_bulk_export-response.json +++ /dev/null @@ -1 +0,0 @@ -{"content": "\n\n\t\n\t\tcontroller\n\t\t08:00:27:d0:e0:2b\n\t\t192.168.204.3\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\tsda\n\t\tsda\n\t\ttext\n\t\tttyS0,115200\n\t\n\t\n\t\tcompute\n\t\t08:00:27:bf:29:39\n\t\t192.168.204.20\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\tsda\n\t\tsda\n\t\ttext\n\t\tttyS0,115200\n\t\n\n"} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-request.json deleted file mode 100644 index e16d0c2c8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-request.json +++ /dev/null @@ -1 +0,0 @@ -{"force": false} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-response.json deleted file mode 100644 index 0a6a13b19..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_downgrade-response.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "iports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/iports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/iports", - "rel": "bookmark" - } - ], - "reserved": "False", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade", - "rel": "bookmark" - } - ], - "idisks": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/idisks", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/idisks", - "rel": "bookmark" - } - ], - "subfunctions": "compute", - "config_applied": "install", - "bm_ip": "", - "updated_at": "2017-03-06T16:16:10.126508+00:00", - "isensors": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/isensors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/isensors", - "rel": "bookmark" - } - ], - "ceph_mon": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ceph_mon", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ceph_mon", - "rel": "bookmark" - } - ], - "ihost_action": "lock", - "bm_username": "", - "id": 4, - "iprofile_uuid": null, - "serialid": null, - "availability": "offline", - "forisystemid": 1, - "vim_progress_status": "services-disabled", - "icpus": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/icpus", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/icpus", - "rel": "bookmark" - } - ], - "uptime": 0, - "console": "", - "uuid": "e6c1a877-a332-46dd-821d-e5fa9e2c4ade", - "mgmt_ip": "192.168.204.80", - "software_load": "15.12", - "config_status": null, - "hostname": "compute-1", - "istors": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/istors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/istors", - "rel": "bookmark" - } - ], - "capabilities": {}, - "operational": "disabled", - "location": { - "locn": "" - }, - "invprovision": "provisioned", - "administrative": "locked", - "personality": "compute", - "iinterfaces": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/iinterfaces", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/iinterfaces", - "rel": "bookmark" - } - ], - "pci_devices": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/pci_devices", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/pci_devices", - "rel": "bookmark" - } - ], - "ethernet_ports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ethernet_ports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ethernet_ports", - "rel": "bookmark" - } - ], - "mtce_info": null, - "isensorgroups": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/isensorgroups", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/isensorgroups", - "rel": "bookmark" - } - ], - "isystem_uuid": "4d31d98d-4992-445a-b749-485ce6077fd2", - "boot_device": "sda", - "rootfs_device": "sda", - "mgmt_mac": "08:00:27:a1:02:ff", - "subfunction_oper": "disabled", - "peers": null, - "task": "", - "ttys_dcd": "False", - "target_load": "15.12", - "lldp_neighbours": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/lldp_neighbors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/lldp_neighbors", - "rel": "bookmark" - } - ], - "created_at": "2016-11-28T17:58:07.778282+00:00", - "subfunction_avail": "online", - "install_output": "graphical", - "ipvs": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ipvs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ipvs", - "rel": "bookmark" - } - ], - "ilvgs": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ilvgs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ilvgs", - "rel": "bookmark" - } - ], - "action": "none", - "bm_type": "", - "lldp_agents": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/lldp_agents", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/lldp_agents", - "rel": "bookmark" - } - ], - "imemorys": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/imemorys", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/imemorys", - "rel": "bookmark" - } - ], - "ports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/ports", - "rel": "bookmark" - } - ], - "inodes": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/inodes", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/e6c1a877-a332-46dd-821d-e5fa9e2c4ade/inodes", - "rel": "bookmark" - } - ], - "config_target": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_assign-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_assign-request.json deleted file mode 100644 index 7afc33d53..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_assign-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "key1": "value1", - "key2": "value2" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_list-response.json deleted file mode 100644 index ba30258d2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_label_list-response.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "labels": [ - { - "uuid": "a7d37730-c58e-4b18-9046-6bd0f4fe03a8", - "host_uuid": "42e30882-ab1a-41b0-9f65-696f6d804888", - "label": "key1=value1" - }, - { - "uuid": "c9d3aca9-d360-406c-80c7-a059404471c1", - "host_uuid": "42e30882-ab1a-41b0-9f65-696f6d804888", - "label": "key2=value2" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_list-response.json deleted file mode 100644 index 6daabbd82..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_list-response.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "ihosts":[ - { - "reserved":"False", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T14:56:23.230316+00:00", - "bm_username":null, - "iprofile_uuid":null, - "id":1, - "uptime":68379, - "mgmt_ip":"192.168.204.3", - "hostname":"controller-0", - "capabilities":{ - "stor_function":"monitor", - "Personality":"Controller-Active" - }, - "operational":"enabled", - "availability":"available", - "location":{ - - }, - "config_applied":"18c9e850-be49-4b84-9eba-6aaeab12ec72", - "administrative":"unlocked", - "personality":"controller", - "config_status":"Config out-of-date", - "config_target":"a47cfb0d-3892-4608-8012-371ce45faf55", - "mgmt_mac":"08:00:27:3d:c2:fe", - "task":"", - "created_at":"2014-10-01T20:06:44.302456+00:00", - "uuid":"298d0050-7758-4bb8-aefc-dfddad2c4984", - "action":"none", - "bm_type":null - }, - { - "reserved":"False", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/5f7d15c6-77aa-49cd-a6a1-678aef89edea", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/5f7d15c6-77aa-49cd-a6a1-678aef89edea", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T14:56:23.252439+00:00", - "bm_username":"", - "iprofile_uuid":null, - "id":2, - "uptime":65518, - "mgmt_ip":"192.168.204.4", - "hostname":"controller-1", - "capabilities":{ - "stor_function":"monitor", - "Personality":"Controller-Standby" - }, - "operational":"enabled", - "availability":"available", - "location":{ - "locn":"" - }, - "config_applied":"18c9e850-be49-4b84-9eba-6aaeab12ec72", - "administrative":"unlocked", - "personality":"controller", - "config_status":"Config out-of-date", - "config_target":"a47cfb0d-3892-4608-8012-371ce45faf55", - "mgmt_mac":"08:00:27:90:be:dc", - "task":"", - "created_at":"2014-10-01T20:07:11.401964+00:00", - "uuid":"5f7d15c6-77aa-49cd-a6a1-678aef89edea", - "action":"none", - "bm_type":null - }, - { - "reserved":"False", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/0dad0322-f289-40ca-9059-67cd673a0923", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/0dad0322-f289-40ca-9059-67cd673a0923", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T15:00:23.445512+00:00", - "bm_username":"", - "iprofile_uuid":null, - "id":5, - "uptime":63720, - "mgmt_ip":"192.168.204.5", - "hostname":"storage-0", - "capabilities":{ - "stor_function":"monitor" - }, - "operational":"disabled", - "availability":"online", - "location":{ - "locn":"" - }, - "config_applied":null, - "administrative":"locked", - "personality":"storage", - "config_status":null, - "config_target":null, - "mgmt_mac":"08:00:27:fa:e2:1c", - "task":"", - "created_at":"2014-10-01T21:12:09.899675+00:00", - "uuid":"0dad0322-f289-40ca-9059-67cd673a0923", - "action":"none", - "bm_type":null - }, - { - "reserved":"False", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T14:56:23.268242+00:00", - "bm_username":"", - "iprofile_uuid":null, - "id":6, - "uptime":62651, - "mgmt_ip":"192.168.204.6", - "hostname":"storage-1", - "capabilities":{ - - }, - "operational":"disabled", - "availability":"online", - "location":{ - "locn":"" - }, - "config_applied":null, - "administrative":"locked", - "personality":"storage", - "config_status":null, - "config_target":null, - "mgmt_mac":"08:00:27:22:48:f2", - "task":"", - "created_at":"2014-10-01T21:26:17.404218+00:00", - "uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "action":"none", - "bm_type":null - }, - { - "reserved":"False", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/cd5ef327-618b-4aac-9b10-9bbbe2baa8e0", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/cd5ef327-618b-4aac-9b10-9bbbe2baa8e0", - "rel":"bookmark" - } - ], - "bm_ip":null, - "updated_at":null, - "bm_username":null, - "iprofile_uuid":null, - "id":7, - "uptime":0, - "mgmt_ip":"192.168.204.129", - "hostname":null, - "capabilities":{ - - }, - "operational":"disabled", - "availability":"offline", - "location":{ - - }, - "config_applied":null, - "administrative":"locked", - "personality":null, - "config_status":null, - "config_target":null, - "mgmt_mac":"08:00:27:be:6e:25", - "task":null, - "created_at":"2014-10-02T13:57:04.900900+00:00", - "uuid":"cd5ef327-618b-4aac-9b10-9bbbe2baa8e0", - "action":"none", - "bm_type":null - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-request.json deleted file mode 100644 index 70c19ab9c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/location", - "value":"{'locn':'350 Terry Fox Dr, Kanata, Ontario, Canada'}", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-response.json deleted file mode 100644 index 73e2188b8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_modify-response.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "ports":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/ports", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/ports", - "rel":"bookmark" - } - ], - "reserved":"False", - "idisks":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/idisks", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/idisks", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T15:19:42.572251+00:00", - "bm_username":null, - "iprofile_uuid":null, - "id":1, - "forisystemid":1, - "icpus":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/icpus", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/icpus", - "rel":"bookmark" - } - ], - "uptime":69459, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"bookmark" - } - ], - "mgmt_ip":"192.168.204.3", - "hostname":"controller-0", - "istors":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/istors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/istors", - "rel":"bookmark" - } - ], - "capabilities":{ - "stor_function":"monitor" - }, - "availability":"available", - "location":{ - "locn":"350 Terry Fox Dr, Kanata, Ontario, Canada" - }, - "config_applied":"18c9e850-be49-4b84-9eba-6aaeab12ec72", - "invprovision":"provisioned", - "administrative":"unlocked", - "personality":"controller", - "iinterfaces":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/iinterfaces", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/iinterfaces", - "rel":"bookmark" - } - ], - "config_status":"Config out-of-date", - "config_target":"a47cfb0d-3892-4608-8012-371ce45faf55", - "isystem_uuid":"e79e74a5-e08e-41ab-9277-5e01457a0e5e", - "mgmt_mac":"08:00:27:3d:c2:fe", - "task":null, - "ttys_dcd":null, - "recordtype":"standard", - "operational":"enabled", - "created_at":"2014-10-01T20:06:44.302456+00:00", - "uuid":"298d0050-7758-4bb8-aefc-dfddad2c4984", - "action":"none", - "bm_type":null, - "serialId":null, - "boot_device": "sda", - "rootfs_device": "sda", - "install_output": "text", - "console": "ttyS0,115200", - "inodes":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/inodes", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/inodes", - "rel":"bookmark" - } - ], - "imemorys":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/imemorys", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/imemorys", - "rel":"bookmark" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-request.json deleted file mode 100644 index 435e71b0d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "prefix": "0", - "interface_uuid": "4e49a054-3c72-43b8-8e48-1f63dcc5ff7d", - "gateway": "192.168.59.1", - "metric": "1", - "network": "0.0.0.0" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-response.json deleted file mode 100644 index 3b37b3f66..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_add-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "forihostid": 3, - "network": "0.0.0.0", - "metric": 1, - "updated_at": null, - "gateway": "192.168.59.1", - "created_at": "2016-11-16T16:49:58.044211+00:00", - "prefix": 0, - "ifname": "vlan11", - "interface_uuid": "4e49a054-3c72-43b8-8e48-1f63dcc5ff7d", - "id": 14, - "uuid": "83c1d4e1-9dd4-414b-93e9-61875bc5a180" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_list-response.json deleted file mode 100644 index 7e2351454..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_list-response.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "routes": [{ - "forihostid": 3, - "uuid": "dbacbb57-b3cd-4b9c-b365-0ecf5dec4d60", - "metric": 1, - "prefix": 0, - "ifname": "vlan11", - "gateway": "192.168.59.1", - "network": "0.0.0.0" - }, - { - "forihostid": 3, - "uuid": "354968fc-6f18-46dc-93a1-6118280e3cee", - "metric": 1, - "prefix": 0, - "ifname": "vlan11", - "gateway": "fd00:0:0:b::1", - "network": "::" - }, - { - "forihostid": 3, - "uuid": "014b66b2-3d57-4c3c-a305-5d417ee75125", - "metric": 1, - "prefix": 0, - "ifname": "data1", - "gateway": "192.168.58.1", - "network": "0.0.0.0" - }, - { - "forihostid": 3, - "uuid": "1ef1bc3f-813d-4947-a1a6-1ee9945010d4", - "metric": 1, - "prefix": 0, - "ifname": "data1", - "gateway": "fd00:0:0:2::1", - "network": "::" - }, - { - "forihostid": 3, - "uuid": "67255752-ad7f-496d-8d72-b42775fca330", - "metric": 1, - "prefix": 0, - "ifname": "data0", - "gateway": "192.168.57.1", - "network": "0.0.0.0" - }, - { - "forihostid": 3, - "uuid": "77c9ac25-49c4-4327-aa3c-f9e868b6a56d", - "metric": 1, - "prefix": 0, - "ifname": "data0", - "gateway": "fd00:0:0:1::1", - "network": "::" - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_show-response.json deleted file mode 100644 index be70c0bf9..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_route_show-response.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "forihostid": 3, - "network": "0.0.0.0", - "metric": 1, - "updated_at": null, - "gateway": "192.168.57.1", - "created_at": "2016-11-09T15:58:31.830131+00:00", - "prefix": 0, - "ifname": "data0", - "interface_uuid": "da107d6c-3844-482b-aa5d-2c355f5434d3", - "id": 11, - "uuid": "67255752-ad7f-496d-8d72-b42775fca330" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_show-response.json deleted file mode 100644 index 91e63c5c2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_show-response.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "ports":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/ports", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/ports", - "rel":"bookmark" - } - ], - "reserved":"False", - "idisks":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/idisks", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/idisks", - "rel":"bookmark" - } - ], - "bm_ip":"", - "updated_at":"2014-10-02T15:14:23.744473+00:00", - "bm_username":null, - "iprofile_uuid":null, - "id":1, - "forisystemid":1, - "icpus":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/icpus", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/icpus", - "rel":"bookmark" - } - ], - "uptime":69459, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984", - "rel":"bookmark" - } - ], - "mgmt_ip":"192.168.204.3", - "hostname":"controller-0", - "istors":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/istors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/istors", - "rel":"bookmark" - } - ], - "capabilities":{ - "stor_function":"monitor", - "Personality":"Controller-Active" - }, - "availability":"available", - "location":{ - - }, - "config_applied":"18c9e850-be49-4b84-9eba-6aaeab12ec72", - "invprovision":"provisioned", - "administrative":"unlocked", - "personality":"controller", - "iinterfaces":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/iinterfaces", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/iinterfaces", - "rel":"bookmark" - } - ], - "config_status":"Config out-of-date", - "config_target":"a47cfb0d-3892-4608-8012-371ce45faf55", - "isystem_uuid":"e79e74a5-e08e-41ab-9277-5e01457a0e5e", - "mgmt_mac":"08:00:27:3d:c2:fe", - "task":"", - "recordtype":"standard", - "operational":"enabled", - "created_at":"2014-10-01T20:06:44.302456+00:00", - "uuid":"298d0050-7758-4bb8-aefc-dfddad2c4984", - "action":"none", - "install_state": "installed", - "install_state_info": "", - "bm_type":null, - "serialId":null, - "boot_device": "sda", - "rootfs_device": "sda", - "install_output": "text", - "console": "ttyS0,115200", - "inodes":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/inodes", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/inodes", - "rel":"bookmark" - } - ], - "imemorys":[ - { - "href":"http://192.168.204.2:6385/v1/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/imemorys", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/ihosts/298d0050-7758-4bb8-aefc-dfddad2c4984/imemorys", - "rel":"bookmark" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-request.json deleted file mode 100644 index e16d0c2c8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-request.json +++ /dev/null @@ -1 +0,0 @@ -{"force": false} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-response.json deleted file mode 100644 index a7739c63d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/host_upgrade-response.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "iports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/iports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/iports", - "rel": "bookmark" - } - ], - "reserved": "False", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95", - "rel": "bookmark" - } - ], - "idisks": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/idisks", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/idisks", - "rel": "bookmark" - } - ], - "subfunctions": "compute", - "config_applied": "install", - "bm_ip": "", - "updated_at": "2017-03-06T16:02:47.042128+00:00", - "isensors": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/isensors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/isensors", - "rel": "bookmark" - } - ], - "ceph_mon": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ceph_mon", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ceph_mon", - "rel": "bookmark" - } - ], - "ihost_action": "lock", - "bm_username": "", - "id": 3, - "iprofile_uuid": null, - "serialid": null, - "availability": "online", - "forisystemid": 1, - "vim_progress_status": "services-disabled", - "icpus": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/icpus", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/icpus", - "rel": "bookmark" - } - ], - "uptime": 1112, - "console": "", - "uuid": "bed0aee2-d637-488e-ada1-c837ee503f95", - "mgmt_ip": "192.168.204.247", - "software_load": "15.12", - "config_status": null, - "hostname": "compute-0", - "istors": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/istors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/istors", - "rel": "bookmark" - } - ], - "capabilities": {}, - "operational": "disabled", - "location": { - "locn": "" - }, - "invprovision": "provisioned", - "administrative": "locked", - "personality": "compute", - "iinterfaces": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/iinterfaces", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/iinterfaces", - "rel": "bookmark" - } - ], - "pci_devices": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/pci_devices", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/pci_devices", - "rel": "bookmark" - } - ], - "ethernet_ports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ethernet_ports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ethernet_ports", - "rel": "bookmark" - } - ], - "mtce_info": null, - "isensorgroups": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/isensorgroups", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/isensorgroups", - "rel": "bookmark" - } - ], - "isystem_uuid": "4d31d98d-4992-445a-b749-485ce6077fd2", - "boot_device": "sda", - "rootfs_device": "sda", - "mgmt_mac": "08:00:27:f2:60:5a", - "subfunction_oper": "disabled", - "peers": null, - "task": "", - "ttys_dcd": "False", - "target_load": "16.10", - "lldp_neighbours": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/lldp_neighbors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/lldp_neighbors", - "rel": "bookmark" - } - ], - "created_at": "2016-11-28T17:40:21.476162+00:00", - "subfunction_avail": "online", - "install_output": "graphical", - "ipvs": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ipvs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ipvs", - "rel": "bookmark" - } - ], - "ilvgs": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ilvgs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ilvgs", - "rel": "bookmark" - } - ], - "action": "none", - "bm_type": "", - "lldp_agents": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/lldp_agents", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/lldp_agents", - "rel": "bookmark" - } - ], - "imemorys": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/imemorys", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/imemorys", - "rel": "bookmark" - } - ], - "ports": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ports", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/ports", - "rel": "bookmark" - } - ], - "inodes": [ - { - "href": "http://10.10.10.2:6385/v1/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/inodes", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ihosts/bed0aee2-d637-488e-ada1-c837ee503f95/inodes", - "rel": "bookmark" - } - ], - "config_target": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-request.json deleted file mode 100644 index b708f5958..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infra_subnet": "192.168.205.0/24" - "infra_start": "192.168.205.2", - "infra_end": "192.168.205.254", - "infra_mtu": "9216", - "infra_vlan_id": "137", -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-response.json deleted file mode 100644 index ae906a237..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_add-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "iinfras":[ - { - "infra_subnet":"192.168.205.0/24", - "infra_start":"192.168.205.2", - "infra_end":"192.168.205.254", - "infra_mtu": "9216", - "infra_vlan_id": "137", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"bookmark" - } - ], - "created_at": "2014-12-01T19:35:36.965657+00:00", - "updated_at": "2014-12-02T20:38:51.646902+00:00", - "isystem_uuid": "b7fdc4dd-333d-471b-b21d-ba664ea87714", - "uuid": "15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-request.json deleted file mode 100644 index 4c8d35002..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/action", - "value":"apply", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-response.json deleted file mode 100644 index ae906a237..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_apply-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "iinfras":[ - { - "infra_subnet":"192.168.205.0/24", - "infra_start":"192.168.205.2", - "infra_end":"192.168.205.254", - "infra_mtu": "9216", - "infra_vlan_id": "137", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"bookmark" - } - ], - "created_at": "2014-12-01T19:35:36.965657+00:00", - "updated_at": "2014-12-02T20:38:51.646902+00:00", - "isystem_uuid": "b7fdc4dd-333d-471b-b21d-ba664ea87714", - "uuid": "15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-request.json deleted file mode 100644 index 463f37b30..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/infra_subnet", - "value":"192.168.205.0/24", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-response.json deleted file mode 100644 index ae906a237..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_modify-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "iinfras":[ - { - "infra_subnet":"192.168.205.0/24", - "infra_start":"192.168.205.2", - "infra_end":"192.168.205.254", - "infra_mtu": "9216", - "infra_vlan_id": "137", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel":"bookmark" - } - ], - "created_at": "2014-12-01T19:35:36.965657+00:00", - "updated_at": "2014-12-02T20:38:51.646902+00:00", - "isystem_uuid": "b7fdc4dd-333d-471b-b21d-ba664ea87714", - "uuid": "15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_show-response.json deleted file mode 100644 index a7808c5f1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/infra_show-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "iinfras":[ - { - "infra_subnet": "192.168.205.0/24", - "infra_start": "192.168.205.2", - "infra_end": "192.168.205.254", - "infra_mtu": "9216", - "infra_vlan_id": "137", - "links":[ - { - "href": "http://10.10.10.2:6385/v1/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/iinfras/15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c", - "rel": "bookmark" - } - ], - "created_at": "2014-12-01T19:35:36.965657+00:00", - "updated_at": "2014-12-02T20:38:51.646902+00:00", - "isystem_uuid": "b7fdc4dd-333d-471b-b21d-ba664ea87714", - "uuid": "15ba72aa-442f-4b57-a8a1-e3f3cdd5b04c" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-request.json deleted file mode 100644 index 865d2c7d5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-request.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "iftype": "ae", - "txhashpolicy": "layer2", - "ihost_uuid": "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "imtu": "1500", - "providernetworks": "physnet-0,physnet1", - "networktype": "data", - "ifname": "data1", - "uses": ['eth2','eth3'], - "aemode": "balanced", - "sriov_numvfs": 0 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-response.json deleted file mode 100644 index a5bcdbf1d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_add-response.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "ports": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856/ports", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856/ports", - "rel": "bookmark" - } - ], - "forihostid": 2, - "iftype": "ae", - "uuid": "92dec2e1-a793-4c63-a408-affc492b7856", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "bookmark" - } - ], - "ihost_uuid": "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "vlan_id": null, - "txhashpolicy": "layer2", - "created_at": "2014-09-29T10:55:20.515705+00:00", - "schedpolicy": null, - "providernetworksdict": { - - }, - "imac": null, - "updated_at": null, - "ifcapabilities": { - - }, - "imtu": 1500, - "uses": [ - "eth2", - "eth3" - ], - "used_by": [ - - ], - "aemode": "balanced", - "sriov_numvfs": 0, - "providernetworks": "physnet-0,physnet-1", - "networktype": "data", - "ifname": "data1", - "ports": null, -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_list-response.json deleted file mode 100644 index db5b3e37d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_list-response.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "iinterfaces": [ - { - "forihostid": 2, - "iftype": "ethernet", - "uuid": "1425e76f-eb40-41bd-825f-f692a3064043", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/1425e76f-eb40-41bd-825f-f692a3064043", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/1425e76f-eb40-41bd-825f-f692a3064043", - "rel": "bookmark" - } - ], - "txhashpolicy": null, - "schedpolicy": null, - "imac": "08:00:27:80:aa:6e", - "sriov_numvfs": 0, - "ihost_uuid": "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "vlan_id": null, - "imtu": 1500, - "aemode": null, - "providernetworks": null, - "networktype": "mgmt", - "ifname": "eth1" - }, - { - "forihostid": 2, - "iftype": "ae", - "uuid": "92dec2e1-a793-4c63-a408-affc492b7856", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "bookmark" - } - ], - "txhashpolicy": "layer2", - "schedpolicy": null, - "imac": null, - "sriov_numvfs": 0, - "ihost_uuid": "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "imtu": 1500, - "uses": [ - "eth2", - "eth3" - ], - "used_by": [ - - ], - "aemode": "balanced", - "providernetworks": "physnet-0,physnet-1", - "networktype": "data", - "ifname": "data1" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-request.json deleted file mode 100644 index 304b76bd7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-request.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "path": "/imtu", - "value": "1500", - "op": "replace" - }, - { - "path": "/txhashpolicy", - "value": "layer2", - "op": "replace" - }, - { - "path": "/providernetworks", - "value": "physnet-0,physnet-1", - "op": "replace" - }, - { - "path": "/aemode", - "value": "active_standby", - "op": "replace" - }, - { - "path": "/uses", - "value": ['eth2','eth3'], - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-response.json deleted file mode 100644 index 3ce7d4de3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_modify-response.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "ports": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856/ports", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856/ports", - "rel": "bookmark" - } - ], - "forihostid": 2, - "iftype": "ae", - "uuid": "92dec2e1-a793-4c63-a408-affc492b7856", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iinterfaces/92dec2e1-a793-4c63-a408-affc492b7856", - "rel": "bookmark" - } - ], - "ihost_uuid": "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "vlan_id": null, - "txhashpolicy": "layer2", - "created_at": "2014-09-29T10:55:20.515705+00:00", - "schedpolicy": null, - "providernetworksdict": { - - }, - "imac": null, - "sriov_numvfs": 0, - "updated_at": "2014-09-29T11:08:21.016145+00:00", - "ifcapabilities": { - - }, - "imtu": 1500, - "uses": [ - "eth2", - "eth3" - ], - "used_by": [ - - ], - "aemode": "active_standby", - "providernetworks": "physnet-0,physnet-1", - "networktype": "data", - "ifname": "data1", - "ports": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_show-response.json deleted file mode 100644 index b3f4bb3d2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/interface_show-response.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "ports" : [ - { - "rel" : "self", - "href" : "http://10.10.10.2:6385/v1/iinterfaces/740a5bec-b7a8-4645-93ed-aea0d4cfbf86/ports" - }, - { - "rel" : "bookmark", - "href" : "http://10.10.10.2:6385/iinterfaces/740a5bec-b7a8-4645-93ed-aea0d4cfbf86/ports" - } - ], - "providernetworks" : "physnet-0,physnet-1", - "txhashpolicy" : "layer2", - "schedpolicy" : null, - "networktype" : "data", - "uuid" : "740a5bec-b7a8-4645-93ed-aea0d4cfbf86", - "ihost_uuid" : "ff453a51-1d3b-437f-a65e-b2d163f79f85", - "vlan_id": null, - "created_at" : "2014-09-29T11:12:42.556372+00:00", - "ifcapabilities" : {}, - "iftype" : "ae", - "links" : [ - { - "rel" : "self", - "href" : "http://10.10.10.2:6385/v1/iinterfaces/740a5bec-b7a8-4645-93ed-aea0d4cfbf86" - }, - { - "rel" : "bookmark", - "href" : "http://10.10.10.2:6385/iinterfaces/740a5bec-b7a8-4645-93ed-aea0d4cfbf86" - } - ], - "providernetworksdict" : {}, - "imac" : null, - "sriov_numvfs": 0, - "aemode" : "balanced", - "ifname" : "data1", - "ports" : null, - "uses": [ - - ], - "used_by": [ - - ], - "forihostid" : 2, - "updated_at" : null, - "imtu" : 1500 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/istorconfig_summary-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/istorconfig_summary-response.json deleted file mode 100644 index 0855a181b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/istorconfig_summary-response.json +++ /dev/null @@ -1 +0,0 @@ -{"database_gib": "20", "cinder_pool_gib": 180, "image_gib": "20", "glance_backend": "[LVM, CEPH]", "ceph_mon_gib": 20, "created_at": "2016-06-08T22:12:05.633108+00:00", "updated_at": "2016-06-09T22:12:05.633108+00:00", "ceph_total_space_gib": 208, "cinder_backend": "[LVM, CEPH]", "glance_pool_gib": 20, "cinder_device": "{u'controller-1': u'/dev/disk/by-path/pci-0000:00:0d.0-ata-4.0', u'controller-0': u'/dev/disk/by-path/pci-0000:00:0d.0-ata-3.0'}", "cinder_gib": 20, "backup_gib": 20, "isystem_uuid": "e29e3087-444b-461d-a850-6f84364ae4ba", "ceph_mon_dev_ctrl1": null, "img_conversions_gib": 10, "ceph_mon_dev_ctrl0": null, "ephemeral_pool_gib": 0} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_install-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_install-request.json deleted file mode 100644 index 16f0bdf7d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_install-request.json +++ /dev/null @@ -1 +0,0 @@ -file=@/home/wrsroot/license.lic diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_list-response.json deleted file mode 100644 index 9b96aea49..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/license_list-response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "licenses": [{ - "status": "Installed", - "expiry_date": "31-jan-2018", - "name": "Standard_Product_Configuration", - }, - { - "status": "Installed", - "expiry_date": "31-jan-2018", - "name": "All-In-One_Product_Configuration", - }, - { - "status": "Installed", - "expiry_date": "31-jan-2018", - "name": "All-In-One_Simplex_Product_Configuration", - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_list-response.json deleted file mode 100644 index 5e4c92094..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_list-response.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "lldp_agents": [ - { - "status": "rx=enabled,tx=enabled", - "system_name": "controller-0:vbox", - "port_description": "eth0", - "dot3_max_frame": null, - "port_uuid": "6d222be7-221d-4556-be69-145a21afeb69", - "uuid": "a4a734d1-b749-412e-ad32-ea511d8e7499", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499", - "rel": "bookmark" - } - ], - "dot3_mac_status": null, - "port_identifier": "08:00:27:19:ad:0d", - "system_description": "Titanium Cloud version 18.03", - "updated_at": null, - "chassis_id": "08:00:27:19:ad:0d", - "dot1_lag": "capable=y,enabled=n", - "port_name": "eth0", - "port_namedisplay": null, - "management_address": "10.10.10.3, fe80::a00:27ff:fe19:ad0d", - "ttl": "120", - "dot1_vlan_names": null, - "created_at": "2016-04-11T15:40:18.366046+00:00", - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_capabilities": "station" - }, - { - "status": "rx=enabled,tx=enabled", - "system_name": "controller-0:vbox", - "port_description": "eth1", - "dot3_max_frame": null, - "port_uuid": "c1e44562-fe58-4255-ab2f-d58aa5be1ced", - "uuid": "0ec02f88-623f-4148-801c-08d2c4c015f4", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_agents\/0ec02f88-623f-4148-801c-08d2c4c015f4", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_agents\/0ec02f88-623f-4148-801c-08d2c4c015f4", - "rel": "bookmark" - } - ], - "dot3_mac_status": null, - "port_identifier": "08:00:27:b9:af:30", - "system_description": "Titanium Cloud version 18.03", - "updated_at": null, - "chassis_id": "08:00:27:19:ad:0d", - "dot1_lag": "capable=y,enabled=n", - "port_name": "eth1", - "port_namedisplay": null, - "management_address": "10.10.10.3, fe80::a00:27ff:fe19:ad0d", - "ttl": "120", - "dot1_vlan_names": null, - "created_at": "2016-04-11T15:40:18.396903+00:00", - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_capabilities": "station" - }, - { - "status": "rx=enabled,tx=enabled", - "system_name": "controller-0:vbox", - "port_description": "eth2", - "dot3_max_frame": null, - "port_uuid": "3b525a1d-9aad-4e74-9d51-8be28db9c4d6", - "uuid": "0c3e3cca-de7d-4b6a-9766-61f16ed34e78", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_agents\/0c3e3cca-de7d-4b6a-9766-61f16ed34e78", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_agents\/0c3e3cca-de7d-4b6a-9766-61f16ed34e78", - "rel": "bookmark" - } - ], - "dot3_mac_status": null, - "port_identifier": "08:00:27:b7:c9:78", - "system_description": "Titanium Cloud version 18.03", - "updated_at": null, - "chassis_id": "08:00:27:19:ad:0d", - "dot1_lag": "capable=y,enabled=n", - "port_name": "eth2", - "port_namedisplay": null, - "management_address": "10.10.10.3, fe80::a00:27ff:fe19:ad0d", - "ttl": "120", - "dot1_vlan_names": null, - "created_at": "2016-04-11T15:40:18.424135+00:00", - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_capabilities": "station" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_show-response.json deleted file mode 100644 index 69601469f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_agent_show-response.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "port_description": "eth0", - "port_uuid": "6d222be7-221d-4556-be69-145a21afeb69", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499", - "rel": "bookmark" - } - ], - "port_identifier": "08:00:27:19:ad:0d", - "updated_at": null, - "port_name": "eth0", - "port_namedisplay": null, - "ttl": "120", - "dot1_vlan_names": null, - "uuid": "a4a734d1-b749-412e-ad32-ea511d8e7499", - "system_description": "Titanium Cloud version 18.03", - "chassis_id": "08:00:27:19:ad:0d", - "dot1_lag": "capable=y,enabled=n", - "system_capabilities": "station", - "status": "rx=enabled,tx=enabled", - "tlvs": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499\/tlvs", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_agents\/a4a734d1-b749-412e-ad32-ea511d8e7499\/tlvs", - "rel": "bookmark" - } - ], - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_name": "controller-0:vbox", - "dot3_max_frame": null, - "dot3_mac_status": null, - "created_at": "2016-04-11T15:40:18.366046+00:00", - "management_address": "10.10.10.3, fe80::a00:27ff:fe19:ad0d" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_list-response.json deleted file mode 100644 index fa9eb11e0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_list-response.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "lldp_neighbours": [ - { - "port_description": null, - "msap": "08:00:27:ae:0a:60,Management1", - "port_uuid": "6d222be7-221d-4556-be69-145a21afeb69", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521", - "rel": "bookmark" - } - ], - "port_identifier": "Management1", - "updated_at": null, - "dot1_vid_digest": null, - "port_name": "eth0", - "port_namedisplay": null, - "ttl": "104", - "dot1_port_vid": null, - "dot1_vlan_names": null, - "uuid": "5742ce56-0420-42df-9096-d13b0a118521", - "system_description": "Arista Networks EOS version 4.15.0F running on an Arista Networks vEOS", - "dot1_management_vid": null, - "chassis_id": "08:00:27:ae:0a:60", - "dot1_lag": "capable=y,enabled=n", - "dot1_proto_vids": null, - "system_capabilities": "bridge", - "dot1_proto_ids": null, - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_name": "arista-swtich", - "dot3_power_mdi": null, - "dot3_max_frame": "1518", - "dot3_mac_status": null, - "created_at": "2016-04-11T15:40:17.982210+00:00", - "management_address": "10.10.10.253" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_show-response.json deleted file mode 100644 index 558e292ac..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/lldp_neighbor_show-response.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "port_description": null, - "msap": "08:00:27:ae:0a:60,Management1", - "port_uuid": "6d222be7-221d-4556-be69-145a21afeb69", - "links": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521", - "rel": "bookmark" - } - ], - "port_identifier": "Management1", - "updated_at": null, - "dot1_vid_digest": null, - "port_name": "eth0", - "port_namedisplay": null, - "ttl": "104", - "dot1_port_vid": null, - "dot1_vlan_names": null, - "uuid": "5742ce56-0420-42df-9096-d13b0a118521", - "system_description": "Arista Networks EOS version 4.15.0F running on an Arista Networks vEOS", - "dot1_management_vid": null, - "chassis_id": "08:00:27:ae:0a:60", - "dot1_lag": "capable=y,enabled=n", - "dot1_proto_vids": null, - "system_capabilities": "bridge", - "tlvs": [ - { - "href": "http:\/\/192.168.204.2:6385\/v1\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521\/tlvs", - "rel": "self" - }, - { - "href": "http:\/\/192.168.204.2:6385\/lldp_neighbours\/5742ce56-0420-42df-9096-d13b0a118521\/tlvs", - "rel": "bookmark" - } - ], - "dot1_proto_ids": null, - "host_uuid": "9285be64-83a9-4067-905f-ab50b5f48823", - "system_name": "arista-swtich", - "dot3_power_mdi": null, - "dot3_max_frame": "1518", - "dot3_mac_status": null, - "created_at": "2016-04-11T15:40:17.982210+00:00", - "management_address": "10.10.10.253" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-request.json deleted file mode 100644 index 6e8d85807..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "path_to_iso": "/home/wrsroot/bootimage.iso", - "path_to_signature": "/home/wrsroot/bootimage.sig" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-response.json deleted file mode 100644 index 82dbaffe7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/load_import-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "required_patches": "", - "uuid": "f57e2b86-9047-443f-be39-d3c8aa47222b", - "software_version": "18.03", - "created_at": "2017-03-07T16:29:27+00:00", - "updated_at": null, - "id": 2, - "state": "importing", - "compatible_version": "16.10" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_list-response.json deleted file mode 100644 index 3269d3301..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_list-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "loads": [ - { - "required_patches": "N/A", - "uuid": "924a83a1-3d86-4b67-80fe-decf4c60ac78", - "software_version": "16.10", - "id": 1, - "state": "active", - "compatible_version": "N/A" - }, - { - "required_patches": "", - "uuid": "f57e2b86-9047-443f-be39-d3c8aa47222b", - "software_version": "18.03", - "id": 2, - "state": "imported", - "compatible_version": "16.10" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_show-response.json deleted file mode 100644 index 05ebd4b67..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/loads_show-response.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "required_patches": "N/A", - "uuid": "924a83a1-3d86-4b67-80fe-decf4c60ac78", - "software_version": "16.10", - "created_at": "2016-11-03T17:16:15.212760+00:00", - "updated_at": null, - "id": 1, - "state": "active", - "compatible_version": "N/A" -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_list-response.json deleted file mode 100644 index a963d74a1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_list-response.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "imemorys" : [ - { - "vswitch_hugepages_nr" : 1, - "hugepages_configured" : "True", - "vm_hugepages_nr_1G_pending" : null, - "memavail_mib" : 22448, - "uuid" : "34098f3a-6b95-4cad-aecb-986dc6312f4f", - "ihost_uuid" : "afecdcfb-2954-498d-88bf-d1385b00f34d", - "created_at" : "2015-04-06T20:27:50.171841+00:00", - "vswitch_hugepages_size_mib" : 1024, - "vm_hugepages_avail_1G" : 0, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.150.54:6385/v1/imemorys/34098f3a-6b95-4cad-aecb-986dc6312f4f" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.150.54:6385/imemorys/34098f3a-6b95-4cad-aecb-986dc6312f4f" - } - ], - "vm_hugepages_nr_2M_pending" : null, - "vswitch_hugepages_reqd" : null, - "vm_hugepages_avail_2M" : 11224, - "vswitch_hugepages_avail" : 0, - "numa_node" : 0, - "vm_hugepages_nr_1G" : 0, - "updated_at" : "2015-04-08T11:32:25.205552+00:00", - "platform_reserved_mib" : 4000, - "memtotal_mib" : 27056, - "vm_hugepages_nr_2M" : 13016, - "inode_uuid" : "c65c852c-1707-40e1-abfc-334270ec0427" - }, - { - "vswitch_hugepages_nr" : 1, - "hugepages_configured" : "True", - "vm_hugepages_nr_1G_pending" : null, - "memavail_mib" : 24082, - "uuid" : "85df5109-77d9-4335-9181-0efa82c98dcc", - "ihost_uuid" : "afecdcfb-2954-498d-88bf-d1385b00f34d", - "created_at" : "2015-04-06T20:27:50.182764+00:00", - "vswitch_hugepages_size_mib" : 1024, - "vm_hugepages_avail_1G" : 0, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.150.54:6385/v1/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.150.54:6385/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - } - ], - "vm_hugepages_nr_2M_pending" : null, - "vswitch_hugepages_reqd" : null, - "vm_hugepages_avail_2M" : 12041, - "vswitch_hugepages_avail" : 0, - "numa_node" : 1, - "vm_hugepages_nr_1G" : 0, - "updated_at" : "2015-04-08T11:32:25.220242+00:00", - "platform_reserved_mib" : 2000, - "memtotal_mib" : 29202, - "vm_hugepages_nr_2M" : 14089, - "inode_uuid" : "67d3c9a0-57b2-4532-b7ea-f1cd16a3b349" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-request.json deleted file mode 100644 index 82b59939a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-request.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "path": "/platform_reserved_mib", - "value": "2000", - "op": "replace" - }, - { - "path": "/vm_hugepages_nr_1G_pending", - "value": "100", - "op": "replace" - }, - { - "path": "/vm_hugepages_nr_2M_pending", - "value": "50", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-response.json deleted file mode 100644 index 192b91d2b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_modify-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "vswitch_hugepages_nr" : 1, - "hugepages_configured" : "True", - "vm_hugepages_nr_1G_pending" : null, - "memavail_mib" : 24082, - "uuid" : "85df5109-77d9-4335-9181-0efa82c98dcc", - "ihost_uuid" : "afecdcfb-2954-498d-88bf-d1385b00f34d", - "created_at" : "2015-04-06T20:27:50.182764+00:00", - "vswitch_hugepages_size_mib" : 1024, - "vm_hugepages_avail_1G" : 0, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.150.54:6385/v1/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.150.54:6385/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - } - ], - "vm_hugepages_nr_2M_pending" : null, - "vswitch_hugepages_reqd" : null, - "vm_hugepages_avail_2M" : 12041, - "vswitch_hugepages_avail" : 0, - "numa_node" : 1, - "vm_hugepages_nr_1G" : 0, - "updated_at" : "2015-04-08T11:33:25.280674+00:00", - "platform_reserved_mib" : 2000, - "memtotal_mib" : 29202, - "vm_hugepages_nr_2M" : 14089, - "inode_uuid" : "67d3c9a0-57b2-4532-b7ea-f1cd16a3b349" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_show-response.json deleted file mode 100644 index 192b91d2b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/memory_show-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "vswitch_hugepages_nr" : 1, - "hugepages_configured" : "True", - "vm_hugepages_nr_1G_pending" : null, - "memavail_mib" : 24082, - "uuid" : "85df5109-77d9-4335-9181-0efa82c98dcc", - "ihost_uuid" : "afecdcfb-2954-498d-88bf-d1385b00f34d", - "created_at" : "2015-04-06T20:27:50.182764+00:00", - "vswitch_hugepages_size_mib" : 1024, - "vm_hugepages_avail_1G" : 0, - "capabilities" : {}, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.150.54:6385/v1/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.150.54:6385/imemorys/85df5109-77d9-4335-9181-0efa82c98dcc" - } - ], - "vm_hugepages_nr_2M_pending" : null, - "vswitch_hugepages_reqd" : null, - "vm_hugepages_avail_2M" : 12041, - "vswitch_hugepages_avail" : 0, - "numa_node" : 1, - "vm_hugepages_nr_1G" : 0, - "updated_at" : "2015-04-08T11:33:25.280674+00:00", - "platform_reserved_mib" : 2000, - "memtotal_mib" : 29202, - "vm_hugepages_nr_2M" : 14089, - "inode_uuid" : "67d3c9a0-57b2-4532-b7ea-f1cd16a3b349" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_list-response.json deleted file mode 100644 index 90e0c16d0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_list-response.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "networks": [{ - "uuid": "7b322329-8097-4233-a7df-83eafaba8447", - "dynamic": true, - "mtu": 1500, - "link_capacity": 1000, - "pool_uuid": "d7187d17-8715-4934-8754-4827e604a468", - "type": "mgmt", - "vlan_id": null - }, - { - "uuid": "bf226d1f-39a3-4c3f-abde-8077077835a4", - "dynamic": true, - "mtu": 1500, - "link_capacity": 1000, - "pool_uuid": "7b299949-614c-4f1a-85cb-c46a09827f0c", - "type": "infra", - "vlan_id": 99 - }, - { - "uuid": "d735fe97-6e10-4534-8720-1ee2d24ec8ae", - "dynamic": false, - "mtu": 1500, - "link_capacity": null, - "pool_uuid": "c5fced12-40ad-47fa-ad01-6800d1e418b7", - "type": "oam", - "vlan_id": null - }] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_show-response.json deleted file mode 100644 index dd38515df..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/network_show-response.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "uuid": "bf226d1f-39a3-4c3f-abde-8077077835a4", - "created_at": "2016-11-09T14:53:20.185156+00:00", - "dynamic": true, - "updated_at": null, - "mtu": 1500, - "link_capacity": 1000, - "pool_uuid": "7b299949-614c-4f1a-85cb-c46a09827f0c", - "type": "infra", - "id": 2, - "vlan_id": 99 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-request.json deleted file mode 100644 index b6aacdf57..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-request.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "path":"/ntpservers", - "value":"0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org", - "op":"replace" - }, - { - "path":"/action", - "value":"apply", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-response.json deleted file mode 100644 index c6124ef00..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_modify-response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "links":[ - { - "href":"http://192.168.204.2:6385/v1/intps/81321749-5092-4faf-94ba-6a6853440725", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/intps/81321749-5092-4faf-94ba-6a6853440725", - "rel":"bookmark" - } - ], - "created_at":"2014-09-30T14:42:16.693209+00:00", - "updated_at":"2014-10-01T17:35:43.162472+00:00", - "ntpservers":"0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org", - "isystem_uuid":"ce178041-2b2c-405d-bf87-f19334a35582", - "forisystemid":1, - "uuid":"81321749-5092-4faf-94ba-6a6853440725" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_show-response.json deleted file mode 100644 index f253ce585..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/ntp_show-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "intps":[ - { - "links":[ - { - "href":"http://192.168.204.2:6385/v1/intps/81321749-5092-4faf-94ba-6a6853440725", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/intps/81321749-5092-4faf-94ba-6a6853440725", - "rel":"bookmark" - } - ], - "created_at":"2014-09-30T14:42:16.693209+00:00", - "updated_at":"2014-10-01T17:33:43.169595+00:00", - "ntpservers":"0.pool.ntp.org,2.pool.ntp.org,1.pool.ntp.org", - "isystem_uuid":"ce178041-2b2c-405d-bf87-f19334a35582", - "uuid":"81321749-5092-4faf-94ba-6a6853440725" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-request.json deleted file mode 100644 index 09f88ee94..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-request.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "size_mib": 256, - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08"}, -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-response.json deleted file mode 100644 index 003b15b13..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_add-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "status": 2, - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part3", - "start_mib": null, - "uuid": "eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "bookmark" - } - ], - "capabilities": {}, - "created_at": "2017-08-30T22:10:39.796884+00:00", - "type_name": null, - "updated_at": null, - "device_node": "/dev/sdb3", - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "ipv_uuid": null, - "end_mib": null, - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08", - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "size_mib": 256 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-request.json deleted file mode 100644 index 88f44c5b5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-request.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "size_mib": "512" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-response.json deleted file mode 100644 index 4ff2b6a28..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_edit-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "status": 2, - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part3", - "start_mib": null, - "uuid": "eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "bookmark" - } - ], - "capabilities": {}, - "created_at": "2017-08-30T22:10:39.796884+00:00", - "type_name": null, - "updated_at": null, - "device_node": "/dev/sdb3", - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "ipv_uuid": null, - "end_mib": null, - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08", - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "size_mib": 512 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_list-response.json deleted file mode 100644 index 56bd691d3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_list-response.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "partitions": [ - { - "capabilities": {}, - "created_at": "2017-08-30T21:10:53.160862+00:00", - "device_node": "/dev/sdb2", - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part2", - "end_mib": 19968, - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08", - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "ipv_uuid": null, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/partitions/209da106-ca41-4910-bb6a-8b498d5ac953", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/partitions/209da106-ca41-4910-bb6a-8b498d5ac953", - "rel": "bookmark" - } - ], - "size_mib": 512, - "start_mib": 512, - "status": 0, - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "type_name": "LVM Physical Volume", - "updated_at": "2017-08-30T21:11:24.107207+00:00", - "uuid": "209da106-ca41-4910-bb6a-8b498d5ac953" - }, - { - "capabilities": {}, - "created_at": "2017-08-30T22:10:39.796884+00:00", - "device_node": "/dev/sdb3", - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part3", - "end_mib": 20225, - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08", - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "ipv_uuid": null, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/partitions/eed80f15-0a31-43c3-a46c-a62cf4cecb7d", - "rel": "bookmark" - } - ], - "size_mib": 258, - "start_mib": 258, - "status": 0, - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "type_name": "LVM Physical Volume", - "updated_at": "2017-08-30T22:26:25.464595+00:00", - "uuid": "eed80f15-0a31-43c3-a46c-a62cf4cecb7d" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_show-response.json deleted file mode 100644 index 206575cb5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/partition_show-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "capabilities": {}, - "created_at": "2017-08-30T21:10:53.160862+00:00", - "device_node": "/dev/sdb2", - "device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part2", - "end_mib": 19968, - "idisk_uuid": "9483349f-7612-4176-8ab7-957d840abf08", - "ihost_uuid": "33178c5b-8b2b-45b4-b438-236a6eb4d0fd", - "ipv_uuid": null, - "links": [ - { - "href": "http://10.10.2.2:6385/v1/partitions/209da106-ca41-4910-bb6a-8b498d5ac953", - "rel": "self" - }, - { - "href": "http://10.10.2.2:6385/partitions/209da106-ca41-4910-bb6a-8b498d5ac953", - "rel": "bookmark" - } - ], - "size_mib": 512, - "start_mib": 512, - "status": 0, - "type_guid": "ba5eba11-0000-1111-2222-000000000001", - "type_name": "LVM Physical Volume", - "updated_at": "2017-08-30T21:11:24.107207+00:00", - "uuid": "209da106-ca41-4910-bb6a-8b498d5ac953" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-request.json deleted file mode 100644 index beaa0667b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ilvg_uuid":"11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24", - "ihost_uuid":"a0f0a6d5-75ad-4769-8e0e-3a7c7c0ce783", - "idisk_uuid":"0e2e3ca6-841e-4315-ba1c-ad624415da2f" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-response.json deleted file mode 100644 index 542b17265..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_add-response.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "lvm_pe_alloced": 0, - "lvm_pe_total": 0, - "ilvg_uuid": "a0f0a6d5-75ad-4769-8e0e-3a7c7c0ce783", - "uuid": "4f504017-b0e8-4563-bb74-fc4d521c59f6", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ipvs/4f504017-b0e8-4563-bb74-fc4d521c59f6", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ipvs/4f504017-b0e8-4563-bb74-fc4d521c59f6", - "rel": "bookmark" - } - ], - "idisks": [ - { - "href": "http://10.10.10.2:6385/v1/ipvs/4f504017-b0e8-4563-bb74-fc4d521c59f6/idisks", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ipvs/4f504017-b0e8-4563-bb74-fc4d521c59f6/idisks", - "rel": "bookmark" - } - ], - "lvm_pv_name": "/dev/sda7", - "created_at": "2015-03-11T05:03:31.649520+00:00", - "forilvgid": 2, - "idisk_uuid": "0e2e3ca6-841e-4315-ba1c-ad624415da2f", - "updated_at": null, - "pv_state": "adding", - "ihost_uuid": "a0f0a6d5-75ad-4769-8e0e-3a7c7c0ce783", - "pv_type": "partition", - "capabilities": {}, - "idisk_device_node": "/dev/sda", - "idisk_device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0", - "lvm_vg_name": "nova-local", - "lvm_pv_uuid": null, - "lvm_pv_size": 0 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_list-response.json deleted file mode 100644 index 70db4b93b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_list-response.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "ipvs": [ - { - "capabilities": {}, - "created_at": "2018-01-03T13:06:36.888057+00:00", - "disk_or_part_device_node": "/dev/sda4", - "disk_or_part_device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-1.0-part4", - "disk_or_part_uuid": "38c24bde-0488-4b50-9576-cfb555179698", - "forilvgid": 1, - "ihost_uuid": "28d70ad2-d722-458c-b361-8cf956e096ed", - "ilvg_uuid": "55786da6-0534-4f4c-b9d1-36a53b0ac510", - "links": [ - { - "href": "http://10.10.12.2:6385/v1/ipvs/a8f13d11-0d55-45ff-a964-98d6e75717ba", - "rel": "self" - }, - { - "href": "http://10.10.12.2:6385/ipvs/a8f13d11-0d55-45ff-a964-98d6e75717ba", - "rel": "bookmark" - } - ], - "lvm_pe_alloced": 1658, - "lvm_pe_total": 3199, - "lvm_pv_name": "/dev/sda4", - "lvm_pv_size": 107340627968, - "lvm_pv_uuid": "M1k6bc-sP7j-kpe2-YWWV-ckZy-zLRh-F6hzff", - "lvm_vg_name": "cgts-vg", - "pv_state": "provisioned", - "pv_type": "partition", - "updated_at": "2018-01-04T09:24:56.071039+00:00", - "uuid": "a8f13d11-0d55-45ff-a964-98d6e75717ba" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-request.json deleted file mode 100644 index a84d2107e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - TBD - TBD - TBD -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-response.json deleted file mode 100644 index a84d2107e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_modify-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - TBD - TBD - TBD -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_show-response.json deleted file mode 100644 index 0425ed57d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/physvolume_show-response.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "capabilities": {}, - "created_at": "2018-01-03T13:32:50.025647+00:00", - "disk_or_part_device_node": "/dev/sdb1", - "disk_or_part_device_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part1", - "disk_or_part_uuid": "ab8852dd-6c2e-421e-b6b6-abebeee6b790", - "forilvgid": 2, - "idisks": [ - { - "href": "http://10.10.12.2:6385/v1/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd/idisks", - "rel": "self" - }, - { - "href": "http://10.10.12.2:6385/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd/idisks", - "rel": "bookmark" - } - ], - "ihost_uuid": "28d70ad2-d722-458c-b361-8cf956e096ed", - "ilvg_uuid": "cf6094c9-380f-407e-91d2-4b3583702a96", - "links": [ - { - "href": "http://10.10.12.2:6385/v1/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd", - "rel": "self" - }, - { - "href": "http://10.10.12.2:6385/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd", - "rel": "bookmark" - } - ], - "lvm_pe_alloced": 1236, - "lvm_pe_total": 1249, - "lvm_pv_name": "/dev/drbd4", - "lvm_pv_size": 5238685696, - "lvm_pv_uuid": "8i5nt3-gyS0-QTwy-aPIr-YRwL-i4vc-rBTLtK", - "lvm_vg_name": "cinder-volumes", - "partitions": [ - { - "href": "http://10.10.12.2:6385/v1/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd/partitions", - "rel": "self" - }, - { - "href": "http://10.10.12.2:6385/ipvs/2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd/partitions", - "rel": "bookmark" - } - ], - "pv_state": "provisioned", - "pv_type": "partition", - "updated_at": "2018-01-04T12:59:48.788114+00:00", - "uuid": "2182ecc6-aab0-40f8-8e0e-d1ad9a9ccbdd" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_list-response.json deleted file mode 100644 index 4ee22da84..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_list-response.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "ports": [ - { - "links": [ - { - "href": "http://192.168.204.2:6385/v1/ports/972dd648-bec0-4204-a469-75c745a5994e", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ports/972dd648-bec0-4204-a469-75c745a5994e", - "rel": "bookmark" - } - ], - "inode_uuid": "e5d68519-eb07-4b28-8ca2-32bb476eeec1", - "updated_at": "2014-09-18T03:12:15.389263+00:00", - "ihost_uuid": "0aca08f9-882f-4491-8ffd-7368d20ead48", - "autoneg": null, - "speed": null, - "iinterface_uuid": null, - "uuid": "972dd648-bec0-4204-a469-75c745a5994e", - "pdevice": "I350 Gigabit Network Connection", - "capabilities": { - - }, - "psdevice": "Device 3592", - "link_mode": 0, - "bootp": null, - "mac": "00:1e:67:51:50:01", - "sriov_totalvfs": 63, - "sriov_numvfs": 0, - "sriov_vfs_pci_address": "", - "driver": "ixgbe", - "name": "eth0", - "psvendor": "Intel Corporation", - "numa_node": 0, - "created_at": "2014-09-18T03:12:15.334214+00:00", - "pclass": "Ethernet controller", - "mtu": 1500, - "pvendor": "Intel Corporation", - "pciaddr": "0000:0a:00.0", - "namedisplay": null - }, - { - "links": [ - { - "href": "http://192.168.204.2:6385/v1/ports/c822edfe-af87-4a15-ac9b-6a8123caede1", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ports/c822edfe-af87-4a15-ac9b-6a8123caede1", - "rel": "bookmark" - } - ], - "inode_uuid": "e5d68519-eb07-4b28-8ca2-32bb476eeec1", - "updated_at": "2014-09-22T02:00:43.938843+00:00", - "ihost_uuid": "0aca08f9-882f-4491-8ffd-7368d20ead48", - "autoneg": null, - "speed": null, - "iinterface_uuid": "b24caa6c-71b1-42be-8968-89abd269ea82", - "uuid": "c822edfe-af87-4a15-ac9b-6a8123caede1", - "pdevice": "82599EB 10-Gigabit SFI/SFP+ Network Connection", - "capabilities": { - - }, - "psdevice": "Ethernet Server Adapter X520-2", - "link_mode": 0, - "bootp": null, - "mac": "90:e2:ba:39:bb:8c", - "sriov_totalvfs": 63, - "sriov_numvfs": 0, - "sriov_vfs_pci_address": "", - "driver": "ixgbe", - "name": "eth4", - "psvendor": "Intel Corporation", - "numa_node": 0, - "created_at": "2014-09-18T03:12:15.325296+00:00", - "pclass": "Ethernet controller", - "mtu": 1500, - "pvendor": "Intel Corporation", - "pciaddr": "0000:05:00.0", - "namedisplay": null - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_show-response.json deleted file mode 100644 index c569b39b4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/port_show-response.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "pdevice" : "82599EB 10-Gigabit SFI/SFP+ Network Connection", - "bootp" : null, - "uuid" : "c822edfe-af87-4a15-ac9b-6a8123caede1", - "ihost_uuid" : "0aca08f9-882f-4491-8ffd-7368d20ead48", - "pvendor" : "Intel Corporation", - "created_at" : "2014-09-18T03:12:15.325296+00:00", - "speed" : null, - "capabilities" : {}, - "mac" : "90:e2:ba:39:bb:8c", - "sriov_totalvfs": 63, - "sriov_numvfs": 0, - "sriov_vfs_pci_address": "", - "driver": "ixgbe", - "mtu" : 1500, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.243:6385/v1/ports/c822edfe-af87-4a15-ac9b-6a8123caede1" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.243:6385/ports/c822edfe-af87-4a15-ac9b-6a8123caede1" - } - ], - "psvendor" : "Intel Corporation", - "iinterface_uuid" : "b24caa6c-71b1-42be-8968-89abd269ea82", - "numa_node" : 0, - "pciaddr" : "0000:05:00.0", - "pclass" : "Ethernet controller", - "psdevice" : "Ethernet Server Adapter X520-2", - "updated_at" : "2014-09-22T02:00:43.938843+00:00", - "link_mode" : 0, - "autoneg" : null, - "pname" : "eth4", - "pnamedisplay" : null, - "inode_uuid" : "e5d68519-eb07-4b28-8ca2-32bb476eeec1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-request.json deleted file mode 100644 index 474d136a5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "profilename": "ifprofile-type-1", - "profiletype": "if", - "ihost_uuid": "959f785b-6387-4b98-aa30-bc861061d7a1" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-response.json deleted file mode 100644 index 1145c23f8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_add-response.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "ports": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/ports", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/ports", - "rel": "bookmark" - } - ], - "reserved": "False", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b", - "rel": "bookmark" - } - ], - "idisks": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/idisks", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/idisks", - "rel": "bookmark" - } - ], - "availability": "offline", - "updated_at": null, - "ihost_uuid": null, - "id": 23, - "icpus": [ - { - "href": "http://192.168.204.2:6385/v1/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/icpus", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/icpus", - "rel": "bookmark" - } - ], - "uptime": 0, - "uuid": "b6bde724-4fda-4941-ae3f-15abd3d4107b", - "mgmt_ip": null, - "hostname": "ifprofile-type-1", - "istors": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/istors", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/istors", - "rel": "bookmark" - } - ], - "operational": "disabled", - "location": { - - }, - "invprovision": null, - "administrative": "locked", - "personality": null, - "iinterfaces": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/iinterfaces", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b/iinterfaces", - "rel": "bookmark" - } - ], - "profiletype": null, - "mgmt_mac": null, - "task": null, - "recordtype": "profile", - "created_at": "2014-09-29T13:36:36.760707+00:00", - "action": "none", - "profilename": null, - "serialId": null, - "inodes": [ - { - "href": "http://192.168.204.2:6385/v1/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/inodes", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/inodes", - "rel": "bookmark" - } - ], - "imemorys": [ - { - "href": "http://192.168.204.2:6385/v1/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/imemorys", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ihosts/b6bde724-4fda-4941-ae3f-15abd3d4107b/imemorys", - "rel": "bookmark" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_list-response.json deleted file mode 100644 index 839a986cb..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_list-response.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "iprofiles": [ - { - "uuid": "b6bde724-4fda-4941-ae3f-15abd3d4107b", - "recordtype": "profile", - "task": null, - "reserved": "False", - "mgmt_ip": null, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/b6bde724-4fda-4941-ae3f-15abd3d4107b", - "rel": "bookmark" - } - ], - "personality": null, - "created_at": "2014-09-29T13:36:36.760707+00:00", - "hostname": "ifprofile-type-1", - "updated_at": null, - "id": 23, - "ihost_uuid": null, - "profiletype": null, - "location": { - - }, - "action": "none", - "profilename": null, - "operational": "disabled", - "administrative": "locked", - "availability": "offline", - "uptime": 0, - "mgmt_mac": null - }, - { - "uuid": "85b8d979-a1d5-4b06-8666-22646d45dcdf", - "recordtype": "profile", - "task": null, - "reserved": "False", - "mgmt_ip": null, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf", - "rel": "bookmark" - } - ], - "personality": null, - "created_at": "2014-09-29T13:42:40.592612+00:00", - "hostname": "ifprofile-type-2", - "updated_at": null, - "id": 24, - "ihost_uuid": null, - "profiletype": null, - "location": { - - }, - "action": "none", - "profilename": null, - "operational": "disabled", - "administrative": "locked", - "availability": "offline", - "uptime": 0, - "mgmt_mac": null - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_show-response.json deleted file mode 100644 index 9de73837e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/profile_show-response.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "ports" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/ports" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/ports" - } - ], - "operational" : "disabled", - "imemorys" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/imemorys" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/imemorys" - } - ], - "iinterfaces" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/iinterfaces" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/iinterfaces" - } - ], - "personality" : null, - "serialId" : null, - "hostname" : "ifprofile-type-2", - "profilename" : null, - "uuid" : "85b8d979-a1d5-4b06-8666-22646d45dcdf", - "profiletype" : null, - "ihost_uuid" : null, - "created_at" : "2014-09-29T13:42:40.592612+00:00", - "availability" : "offline", - "recordtype" : "profile", - "istors" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/istors" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/istors" - } - ], - "idisks" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/idisks" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf/idisks" - } - ], - "uptime" : 0, - "icpus" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/icpus" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/icpus" - } - ], - "id" : 24, - "mgmt_ip" : null, - "links" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/iprofile/85b8d979-a1d5-4b06-8666-22646d45dcdf" - } - ], - "location" : {}, - "inodes" : [ - { - "rel" : "self", - "href" : "http://128.224.151.244:6385/v1/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/inodes" - }, - { - "rel" : "bookmark", - "href" : "http://128.224.151.244:6385/ihosts/85b8d979-a1d5-4b06-8666-22646d45dcdf/inodes" - } - ], - "task" : null, - "mgmt_mac" : null, - "invprovision" : null, - "administrative" : "locked", - "updated_at" : null, - "action" : "none", - "reserved" : "False" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-request.json deleted file mode 100644 index 027ea112c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-request.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "path":"/ip_address", - "value":"10.10.10.45", - "op":"replace" - }, - { - "path":"/enabled", - "value":"True", - "op":"replace" - }, - { - "path":"/transport", - "value":"tcp", - "op":"replace" - }, - { - "path":"/port", - "value":"514", - "op":"replace" - }, - { - "path":"/action", - "value":"apply", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-response.json deleted file mode 100644 index 0f92708ce..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_modify-response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "uuid":"319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/remoteloggings/319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/remoteloggings/319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "rel":"bookmark" - } - ], - "created_at":"2016-11-10T19:57:37.969067+00:00", - "enabled":"True", - "updated_at":null, - "isystem_uuid":"036b338e-8217-4378-97b2-6a3c097882b4", - "action":null, - "key_file":null, - "ip_address":"10.10.10.45", - "port":514, - "transport":"tcp" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_show-response.json deleted file mode 100644 index e598116cf..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/remotelogging_show-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "remoteloggings":[ - { - "uuid":"319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/remoteloggings/319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/remoteloggings/319a1a4c-a1b1-4dc0-a29f-b257497619ef", - "rel":"bookmark" - } - ], - "created_at":"2016-11-10T19:57:37.969067+00:00", - "enabled":"False", - "updated_at":null, - "key_file":null, - "ip_address":null, - "port":514, - "transport":"udp" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-request.json deleted file mode 100644 index faee51287..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-request.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "state" : "enabled", - "ip_address" : "192.168.0.1", - "port" : "6640", - "transport" : "TCP" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-response.json deleted file mode 100644 index acb12e786..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_add-response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "uuid" : "55390e8e-1262-4945-8792-40a26206c8a0", - "links" : [{ - "href" : "http://192.168.204.2:6385/v1/sdn_controllers/55390e8e-1262-4945-8792-40a26206c8a0", - "rel" : "self" - }, { - "href" : "http://192.168.204.2:6385/sdn_controllers/55390e8e-1262-4945-8792-40a26206c8a0", - "rel" : "bookmark" - } - ], - "created_at" : "2016-08-16T17:06:25.368111+00:00", - "updated_at" : null, - "state" : "enabled", - "ip_address" : "192.168.0.1", - "port" : 6640, - "transport" : "TCP" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_list-response.json deleted file mode 100644 index 6281fc63f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_list-response.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "sdn_controllers" : [{ - "uuid" : "cdae53f1-d842-4a51-a64a-30a682611a24", - "links" : [{ - "href" : "http://192.168.204.2:6385/v1/sdn_controllers/cdae53f1-d842-4a51-a64a-30a682611a24", - "rel" : "self" - }, { - "href" : "http://192.168.204.2:6385/sdn_controllers/cdae53f1-d842-4a51-a64a-30a682611a24", - "rel" : "bookmark" - } - ], - "state" : "enabled", - "ip_address" : "192.168.0.1", - "port" : 6640, - "transport" : "TCP" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-request.json deleted file mode 100644 index d76c4b3ae..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-request.json +++ /dev/null @@ -1,10 +0,0 @@ -[{ - "path" : "/state", - "value" : "disabled", - "op" : "replace" - }, { - "path" : "/transport", - "value" : "TCP", - "op" : "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-response.json deleted file mode 100644 index f834bee35..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_modify-response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "uuid" : "55390e8e-1262-4945-8792-40a26206c8a0", - "links" : [{ - "href" : "http://192.168.204.2:6385/v1/sdn_controllers/55390e8e-1262-4945-8792-40a26206c8a0", - "rel" : "self" - }, { - "href" : "http://192.168.204.2:6385/sdn_controllers/55390e8e-1262-4945-8792-40a26206c8a0", - "rel" : "bookmark" - } - ], - "created_at" : "2016-08-16T17:06:25.368111+00:00", - "updated_at" : "2016-08-16T17:13:31.035249+00:00", - "state" : "disabled", - "ip_address" : "192.168.0.1", - "port" : 6640, - "transport" : "TCP" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_show-response.json deleted file mode 100644 index 460f2a807..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sdn_controller_show-response.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "uuid" : "cdae53f1-d842-4a51-a64a-30a682611a24", - "links" : [{ - "href" : "http://192.168.204.2:6385/v1/sdn_controllers/cdae53f1-d842-4a51-a64a-30a682611a24", - "rel" : "self" - }, { - "href" : "http://192.168.204.2:6385/sdn_controllers/cdae53f1-d842-4a51-a64a-30a682611a24", - "rel" : "bookmark" - } - ], - "created_at" : "2016-08-16T13:04:30.997350+00:00", - "updated_at" : null, - "state" : "enabled", - "ip_address" : "192.168.0.1", - "port" : 6640, - "transport" : "TCP" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_list-response.json deleted file mode 100644 index f1d7d453c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_list-response.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "isensors":[ - { - "t_critical_upper":"120", - "actions_minor":"ignore", - "sensorname":"cpu0temp", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/18daed11-4c89-46ae-9197-a741e9c0bd2c", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/18daed11-4c89-46ae-9197-a741e9c0bd2c", - "rel":"bookmark" - } - ], - "updated_at":"2015-09-08T13:37:36.366979+00:00", - "path":null, - "state_requested":null, - "t_major_lower":"-20", - "uuid":"18daed11-4c89-46ae-9197-a741e9c0bd2c", - "t_minor_upper":"85", - "capabilities":{ - - }, - "actions_critical":"alarm", - "state":"enabled", - "sensorgroup_uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "t_major_upper":"105", - "actions_major":"alarm", - "status":"ok", - "suppress":"False", - "sensortype":"temperature", - "t_critical_lower":"-40", - "t_minor_lower":"-10", - "unit_rate":null, - "unit_modifier":"1", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "unit_base":"Celcius", - "algorithm":null, - "datatype":"analog", - "created_at":"2015-09-08T12:45:49.337205+00:00", - "audit_interval":null - }, - { - "t_critical_upper":"120", - "actions_minor":"ignore", - "sensorname":"cpu1temp", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"bookmark" - } - ], - "updated_at":"2015-09-08T13:43:08.497704+00:00", - "path":null, - "state_requested":null, - "t_major_lower":"-20", - "uuid":"b6567aa3-f52f-44ef-8231-1df901f8c977", - "t_minor_upper":"85", - "capabilities":{ - - }, - "actions_critical":"alarm", - "state":"enabled", - "sensorgroup_uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "t_major_upper":"105", - "actions_major":"alarm", - "status":"ok", - "suppress":"False", - "sensortype":"temperature", - "t_critical_lower":"-40", - "t_minor_lower":"-10", - "unit_rate":null, - "unit_modifier":"1", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "unit_base":"Celcius", - "algorithm":null, - "datatype":"analog", - "created_at":"2015-09-08T12:45:55.638149+00:00", - "audit_interval":null - }, - { - "status":null, - "actions_minor":null, - "uuid":"d6258b09-5e2e-44d4-bec7-930d378e237c", - "algorithm":null, - "updated_at":null, - "datatype":"discrete", - "suppress":"False", - "created_at":"2015-09-08T13:46:17.790654+00:00", - "sensorgroup_uuid":null, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/d6258b09-5e2e-44d4-bec7-930d378e237c", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/d6258b09-5e2e-44d4-bec7-930d378e237c", - "rel":"bookmark" - } - ], - "capabilities":{ - - }, - "actions_critical":null, - "sensortype":"watchdog", - "state":null, - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "state_requested":null, - "path":null, - "audit_interval":null, - "actions_major":null, - "sensorname":"cpuwdt" - }, - { - "status":"ok", - "actions_minor":null, - "uuid":"27f49183-cf73-434c-bff5-5e02ba6076fc", - "algorithm":null, - "updated_at":"2015-09-08T13:47:17.738427+00:00", - "datatype":"discrete", - "suppress":"False", - "created_at":"2015-09-08T13:46:42.624861+00:00", - "sensorgroup_uuid":null, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/27f49183-cf73-434c-bff5-5e02ba6076fc", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/27f49183-cf73-434c-bff5-5e02ba6076fc", - "rel":"bookmark" - } - ], - "capabilities":{ - - }, - "actions_critical":null, - "sensortype":"watchdog", - "state":"enabled", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "state_requested":null, - "path":null, - "audit_interval":null, - "actions_major":null, - "sensorname":"fwwdt" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-request.json deleted file mode 100644 index d8e467b08..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/suppress", - "value":"False", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-response.json deleted file mode 100644 index c594129fb..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_modify-response.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "t_critical_upper":"120", - "actions_minor":"ignore", - "sensorname":"cpu1temp", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"bookmark" - } - ], - "updated_at":"2015-09-08T13:42:55.448781+00:00", - "path":null, - "state_requested":null, - "t_major_lower":"-20", - "uuid":"b6567aa3-f52f-44ef-8231-1df901f8c977", - "t_minor_upper":"85", - "capabilities":{ - - }, - "actions_critical":"alarm", - "state":"enabled", - "sensorgroup_uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "t_major_upper":"105", - "actions_major":"alarm", - "status":"ok", - "suppress":"False", - "sensortype":"temperature", - "t_critical_lower":"-40", - "t_minor_lower":"-10", - "unit_rate":null, - "unit_modifier":"1", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "unit_base":"Celcius", - "algorithm":null, - "datatype":"analog", - "created_at":"2015-09-08T12:45:55.638149+00:00", - "audit_interval":60 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_show-response.json deleted file mode 100644 index c9aab101d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensor_show-response.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "t_critical_upper":"120", - "actions_minor":"ignore", - "sensorname":"cpu1temp", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensors/b6567aa3-f52f-44ef-8231-1df901f8c977", - "rel":"bookmark" - } - ], - "updated_at":"2015-09-08T13:37:36.396138+00:00", - "path":null, - "state_requested":null, - "t_major_lower":"-20", - "uuid":"b6567aa3-f52f-44ef-8231-1df901f8c977", - "t_minor_upper":"85", - "capabilities":{ - - }, - "actions_critical":"alarm", - "state":"enabled", - "sensorgroup_uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "t_major_upper":"105", - "actions_major":"alarm", - "status":"ok", - "suppress":"False", - "sensortype":"temperature", - "t_critical_lower":"-40", - "t_minor_lower":"-10", - "unit_rate":null, - "unit_modifier":"1", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "unit_base":"Celcius", - "algorithm":null, - "datatype":"analog", - "created_at":"2015-09-08T12:45:55.638149+00:00", - "audit_interval":60 -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_list-response.json deleted file mode 100644 index a6d1edbca..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_list-response.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "isensorgroups":[ - { - "audit_interval_group":null, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"bookmark" - } - ], - "t_critical_upper_group":"120", - "updated_at":"2015-09-08T13:37:36.426408+00:00", - "isensors":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"bookmark" - } - ], - "t_critical_lower_group":"-40", - "t_minor_upper_group":"85", - "t_minor_lower_group":"-10", - "uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "unit_modifier_group":"1", - "capabilities":{ - - }, - "state":null, - "unit_rate_group":null, - "actions_major_group":"alarm", - "suppress":"False", - "actions_minor_group":"ignore", - "sensorgroupname":"cpuTemp", - "sensors":null, - "actions_configurable":null, - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "t_major_lower_group":"-20", - "unit_base_group":"Celcius", - "sensortype":"temperature", - "algorithm":null, - "datatype":"analog", - "possible_states":null, - "created_at":"2015-09-08T12:46:36.808611+00:00", - "actions_critical_group":"alarm", - "t_major_upper_group":"10" - }, - { - "actions_minor_group":"ignore", - "audit_interval_group":60, - "actions_major_group":"alarm", - "uuid":"3d05da03-d973-465f-bba1-ddbc14a4f36e", - "algorithm":null, - "datatype":"discrete", - "possible_states":null, - "created_at":"2015-09-08T13:48:27.615374+00:00", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/3d05da03-d973-465f-bba1-ddbc14a4f36e", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/3d05da03-d973-465f-bba1-ddbc14a4f36e", - "rel":"bookmark" - } - ], - "capabilities":{ - - }, - "updated_at":"2015-09-08T13:49:47.098184+00:00", - "sensortype":"watchdog", - "sensorgroupname":"watchdogSystem", - "state":null, - "isensors":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/3d05da03-d973-465f-bba1-ddbc14a4f36e/isensors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/3d05da03-d973-465f-bba1-ddbc14a4f36e/isensors", - "rel":"bookmark" - } - ], - "suppress":"False", - "sensors":null, - "actions_configurable":"alarm", - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "actions_critical_group":"alarm" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-request.json deleted file mode 100644 index fe9a618bf..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-request.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "path":"/actions_critical_group", - "value":"alarm", - "op":"replace" - }, - { - "path":"/actions_major_group", - "value":"alarm", - "op":"replace" - }, - { - "path":"/actions_minor_group", - "value":"ignore", - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-response.json deleted file mode 100644 index 6c5a6a2af..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_modify-response.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "audit_interval_group":null, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"bookmark" - } - ], - "t_critical_upper_group":"120", - "updated_at":"2015-09-08T13:37:15.547558+00:00", - "isensors":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"bookmark" - } - ], - "t_critical_lower_group":"-40", - "t_minor_upper_group":"85", - "t_minor_lower_group":"-10", - "uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "unit_modifier_group":"1", - "capabilities":{ - - }, - "state":'enabled', - "unit_rate_group":null, - "actions_major_group":"alarm", - "suppress":"False", - "actions_minor_group":"ignore", - "sensorgroupname":"cpuTemp", - "sensors":null, - "actions_configurable":null, - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "t_major_lower_group":"-20", - "unit_base_group":"Celcius", - "sensortype":"temperature", - "algorithm":null, - "datatype":"analog", - "possible_states":null, - "created_at":"2015-09-08T12:46:36.808611+00:00", - "actions_critical_group":"alarm", - "t_major_upper_group":"10" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_show-response.json deleted file mode 100644 index 4fe9a7a22..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sensorgroup_show-response.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "audit_interval_group":null, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b", - "rel":"bookmark" - } - ], - "t_critical_upper_group":"120", - "updated_at":"2015-09-08T13:37:36.426408+00:00", - "isensors":[ - { - "href":"http://192.168.204.2:6385/v1/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/isensorgroups/58f297b6-7d32-409a-979b-e141ca50c39b/isensors", - "rel":"bookmark" - } - ], - "t_critical_lower_group":"-40", - "t_minor_upper_group":"85", - "t_minor_lower_group":"-10", - "uuid":"58f297b6-7d32-409a-979b-e141ca50c39b", - "unit_modifier_group":"1", - "capabilities":{ - - }, - "state":null, - "unit_rate_group":null, - "actions_major_group":"alarm", - "suppress":"False", - "actions_minor_group":"ignore", - "sensorgroupname":"cpuTemp", - "sensors":null, - "actions_configurable":null, - "host_uuid":"0a66f89c-412c-4480-a38d-fdad248467a3", - "t_major_lower_group":"-20", - "unit_base_group":"Celcius", - "sensortype":"temperature", - "algorithm":null, - "datatype":"analog", - "possible_states":null, - "created_at":"2015-09-08T12:46:36.808611+00:00", - "actions_critical_group":"alarm", - "t_major_upper_group":"10" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_list-response.json deleted file mode 100644 index 737ce14a7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_list-response.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "sm_servicegroup":[ - { - "status":"", - "name":"controller", - "service_group_name":"web-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":1, - "condition":"", - "uuid":"e3aa5e50-030b-4ab6-a339-929f0be50e5d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"directory-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":2, - "condition":"", - "uuid":"f7b01783-ea3d-44b8-8dd3-9a0c4a1cae9d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"patching-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":3, - "condition":"", - "uuid":"f64bc693-62fa-4f31-b96e-9851c42669ec" - }, - { - "status":"", - "name":"controller", - "service_group_name":"vim-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":4, - "condition":"", - "uuid":"e7dab99d-7bdc-4756-b8b3-b069e7b26e0d" - }, - { - "status":"", - "name":"controller", - "service_group_name":"cloud-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":5, - "condition":"", - "uuid":"149e9f4e-13ba-4d91-9e0e-09905073fda6" - }, - { - "status":"", - "name":"controller", - "service_group_name":"controller-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":6, - "condition":"", - "uuid":"54d46994-9c0e-43bd-8d83-be7396f04f70" - }, - { - "status":"", - "name":"controller", - "service_group_name":"oam-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":7, - "condition":"", - "uuid":"f7b532bf-0dc0-41bd-b38a-75b7747da754" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_show-response.json deleted file mode 100644 index 538d18436..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_group_show-response.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "status":"", - "name":"controller", - "service_group_name":"oam-services", - "node_name":"controller-1", - "state":"active", - "desired_state":"active", - "id":7, - "condition":"", - "uuid":"f7b532bf-0dc0-41bd-b38a-75b7747da754" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_list-response.json deleted file mode 100644 index a9f2199ee..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_list-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "services":[ - { - "status":"", - "state":"enabled-active", - "id":5, - "desired_state":"enabled-active", - "name":"drbd-cgcs" - }, - { - "status":"", - "state":"enabled-active", - "id":3, - "desired_state":"enabled-active", - "name":"drbd-pg" - }, - { - "status":"", - "state":"enabled-active", - "id":4, - "desired_state":"enabled-active", - "name":"drbd-rabbit" - }, - { - "status":"", - "state":"enabled-active", - "id":2, - "desired_state":"enabled-active", - "name":"management-ip" - }, - { - "status":"", - "state":"enabled-active", - "id":1, - "desired_state":"enabled-active", - "name":"oam-ip" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-request.json deleted file mode 100644 index 9474b90bc..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path":"/enabled", - "value":true, - "op":"replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-response.json deleted file mode 100644 index f6cb33ebd..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_modify-response.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "created_at":"2017-03-08T15:45:08.984813+00:00", - "enabled":true, - "name":"murano", - "updated_at":null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_list-response.json deleted file mode 100644 index e8da62855..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_list-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "nodes":[ - { - "administrative_state":"unlocked", - "ready_state":"disabled", - "name":"controller-0", - "operational_state":"disabled", - "availability_status":"unknown", - "id":2 - }, - { - "administrative_state":"unlocked", - "ready_state":"enabled", - "name":"controller-1", - "operational_state":"enabled", - "availability_status":"available", - "id":1 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_show-response.json deleted file mode 100644 index fbff27b50..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_node_show-response.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "administrative_state":"unlocked", - "ready_state":"enabled", - "name":"controller-1", - "operational_state":"enabled", - "availability_status":"available", - "id":1 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-request.json deleted file mode 100644 index 547a9b2b4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-request.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "section":"ldap", - "parameters":{ - "url":"ldap://localhost", - "allow_subtree_delete":"False" - }, - "service":"identity" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-response.json deleted file mode 100644 index f71445216..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_add-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "uuid":"399ec29b-5cf4-45e2-a9d0-a640a5a1760c", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/parameters/399ec29b-5cf4-45e2-a9d0-a640a5a1760c", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/parameters/399ec29b-5cf4-45e2-a9d0-a640a5a1760c", - "rel":"bookmark" - } - ], - "section":"ldap", - "updated_at":null, - "value":"ldap://localhost", - "service":"identity", - "created_at":"2015-12-24T15:29:54.954563+00:00", - "name":"url" -} -{ - "uuid":"cff25627-0f2e-42b3-a8b0-34d491c15728", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/parameters/cff25627-0f2e-42b3-a8b0-34d491c15728", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/parameters/cff25627-0f2e-42b3-a8b0-34d491c15728", - "rel":"bookmark" - } - ], - "section":"ldap", - "updated_at":null, - "value":"False", - "service":"identity", - "created_at":"2015-12-24T15:29:54.957636+00:00", - "name":"allow_subtree_delete" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_apply-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_apply-request.json deleted file mode 100644 index 2b6acc6dc..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_apply-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "service":"identity" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_list-response.json deleted file mode 100644 index dfe3af2f5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_list-response.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "parameters":[ - { - "uuid":"7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/7694eca1-21e0-4998-bf2c-15f71b3bddc5", - "rel":"bookmark" - } - ], - "section":"assignment", - "value":"keystone.assignment.backends.sql.Assignment", - "service":"identity", - "name":"driver" - }, - { - "uuid":"5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/5eeebd50-4809-4d2e-b4ce-1acd9cfeadab", - "rel":"bookmark" - } - ], - "section":"identity", - "value":"keystone.identity.backends.sql.Identity", - "service":"identity", - "name":"driver" - }, - { - "uuid":"b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/b84378ae-6e0a-48f0-b394-f8a519fc14f4", - "rel":"bookmark" - } - ], - "section":"resource", - "value":"keystone.resource.backends.sql.Resource", - "service":"identity", - "name":"driver" - }, - { - "uuid":"6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "links":[ - { - "href":"http://10.10.10.2:6385/v1/parameters/6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "rel":"self" - }, - { - "href":"http://10.10.10.2:6385/parameters/6634285f-428e-4ebe-becd-cbb0ab7f30ad", - "rel":"bookmark" - } - ], - "section":"role", - "value":"keystone.assignment.role_backends.sql.Role", - "service":"identity", - "name":"driver" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-request.json deleted file mode 100644 index e161e1b50..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-request.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "path":"/name", - "value":"suffix", - "op":"replace" - }, - { - "path":"/value", - "value":"dc=openstack,dc=org", - "op":"replace" - } -] - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-response.json deleted file mode 100644 index 6de0b1e58..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_modify-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "uuid":"b1d07555-ac16-4d5a-ba00-8191f4047bd6", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/parameters/b1d07555-ac16-4d5a-ba00-8191f4047bd6", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/parameters/b1d07555-ac16-4d5a-ba00-8191f4047bd6", - "rel":"bookmark" - } - ], - "section":"ldap", - "updated_at":"2015-12-24T15:37:06.091315+00:00", - "value":"dc=openstack,dc=org", - "service":"identity", - "created_at":"2015-12-23T18:58:03.166244+00:00", - "name":"suffix" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_show-response.json deleted file mode 100644 index ad1b80bd6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_parameter_show-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "uuid":"fd5e5e4c-2723-430a-b162-b06b49d94313", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/parameters/fd5e5e4c-2723-430a-b162-b06b49d94313", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/parameters/fd5e5e4c-2723-430a-b162-b06b49d94313", - "rel":"bookmark" - } - ], - "section":"identity", - "updated_at":"2015-12-23T19:07:41.257052+00:00", - "value":"keystone.identity.backends.sql.Identity", - "service":"identity", - "created_at":"2015-12-23T18:54:53.676200+00:00", - "name":"driver" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_show-response.json deleted file mode 100644 index d37f86a3c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/service_show-response.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "status":"", - "state":"enabled-active", - "id":1, - "desired_state":"enabled-active", - "name":"oam-ip" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_backend_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_backend_list-response.json deleted file mode 100644 index c189d25b4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_backend_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "storage_backends": [ - { - "task": null, - "uuid": "9172f885-4a84-41e0-89cd-e350d7fcfeb7", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_backends/9172f885-4a84-41e0-89cd-e350d7fcfeb7", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_backends/9172f885-4a84-41e0-89cd-e350d7fcfeb7", - "rel": "bookmark" - } - ], - "created_at": "2018-02-06T07:03:55.373879+00:00", - "updated_at": "2018-02-06T07:04:04.760902+00:00", - "capabilities": {}, - "services": "glance", - "state": "configured", - "isystem_uuid": "d0f2c2ff-9fc2-4ad3-869f-ef9ea6367c0e", - "backend": "file", - "name": "file-store" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-request.json deleted file mode 100644 index 1e25cfb19..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "services": "cinder,glance", - "confirmed": true -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-response.json deleted file mode 100644 index 78c4cf2f7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_add-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "confirmed": false, - "tier_uuid": null, - "cinder_pool_gib": null, - "uuid": "253f5801-e8bc-468d-a040-1bfa918541ac", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_ceph/253f5801-e8bc-468d-a040-1bfa918541ac", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_ceph/253f5801-e8bc-468d-a040-1bfa918541ac", - "rel": "bookmark" - } - ], - "name": "ceph-store", - "object_pool_gib": null, - "updated_at": null, - "capabilities": { - "min_replication": "1", - "replication": "2" - }, - "ceph_total_space_gib": 0, - "backend": "ceph", - "glance_pool_gib": null, - "state": "configuring", - "task": "applying-manifests", - "tier_name": null, - "services": "cinder,glance", - "object_gateway": false, - "created_at": "2018-02-07T08:39:00.880044+00:00", - "ephemeral_pool_gib": null -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-request.json deleted file mode 100644 index 9f02d24fb..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "services": "cinder", - "confirmed": true, - "name": "ceph-ext-bk", - "ceph_conf": "ext-ceph.conf", - "capabilities": {"cinder_pool": "cinder-volumes"} -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-response.json deleted file mode 100644 index ecae948b6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_add-response.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "confirmed": false, - "task": null, - "name": "ceph-ext-bk", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "bookmark" - } - ], - "created_at": "2018-06-27T13:30:38.557700+00:00", - "updated_at": null, - "uuid": "ced40c30-5499-48a7-8197-3e1a90b3f402", - "capabilities": { - "cinder_pool": "cinder-volumes" - }, - "ceph_conf": null, - "state": "configuring", - "services": "cinder", - "backend": "ceph-external" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_list-response.json deleted file mode 100644 index d47a83851..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_list-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "storage_ceph_external": [ - { - "task": null, - "uuid": "ced40c30-5499-48a7-8197-3e1a90b3f402", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_backends/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_backends/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "bookmark" - } - ], - "created_at": "2018-06-27T13:30:38.557700+00:00", - "updated_at": "2018-06-27T13:35:13.213177+00:00", - "capabilities": { - "cinder_pool": "cinder-volumes" - }, - "services": "cinder", - "state": "configured", - "backend": "ceph-external", - "name": "ceph-ext-bk" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-request.json deleted file mode 100644 index 8f33182f5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-request.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "path": "/services", - "value": "cinder,glance", - "op": "replace" - } - { - "path": "/capabilities", - "value": "{\\"glance_pool\\": \\"images\\"}", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-response.json deleted file mode 100644 index 63bc5e514..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_modify-response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "confirmed": false, - "task": null, - "uuid": "ced40c30-5499-48a7-8197-3e1a90b3f402", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "bookmark" - } - ], - "created_at": "2018-06-27T13:30:38.557700+00:00", - "updated_at": "2018-06-27T13:35:13.213177+00:00", - "capabilities": { - "glance_pool": "images", - "cinder_pool": "cinder-volumes" - }, - "name": "ceph-ext-bk", - "services": "cinder,glance", - "state": "configured", - "ceph_conf": "ext-ceph.conf", - "backend": "ceph-external" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_show-response.json deleted file mode 100644 index 6b419a3ac..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_external_show-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "confirmed": false, - "task": null, - "uuid": "ced40c30-5499-48a7-8197-3e1a90b3f402", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph_external/ced40c30-5499-48a7-8197-3e1a90b3f402", - "rel": "bookmark" - } - ], - "created_at": "2018-06-27T13:30:38.557700+00:00", - "updated_at": "2018-06-27T13:35:13.213177+00:00", - "capabilities": { - "cinder_pool": "cinder-volumes" - }, - "name": "ceph-ext-bk", - "services": "cinder", - "state": "configured", - "ceph_conf": "ext-ceph.conf", - "backend": "ceph-external" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_list-response.json deleted file mode 100644 index 994c6548a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_list-response.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "storage_ceph": [ - { - "backend": "ceph", - "capabilities": { - "min_replication": "1", - "replication": "2" - }, - "ceph_total_space_gib": 0, - "cinder_pool_gib": 27, - "created_at": "2018-03-04T07:19:51.699172+00:00", - "ephemeral_pool_gib": 0, - "glance_pool_gib": 21, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph/bb6a60f6-7fe2-407d-afd0-21d8b6e2f128", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph/bb6a60f6-7fe2-407d-afd0-21d8b6e2f128", - "rel": "bookmark" - } - ], - "name": "ceph-store", - "object_gateway": true, - "object_pool_gib": 0, - "services": "cinder,glance,swift", - "state": "configured", - "task": "restore", - "tier_name": "storage", - "tier_uuid": "dcb41fcc-307a-4d0b-b5dd-af8c6a48a3c5", - "updated_at": "2018-03-08T06:13:02.485985+00:00", - "uuid": "bb6a60f6-7fe2-407d-afd0-21d8b6e2f128" - }, - { - "backend": "ceph", - "capabilities": { - "min_replication": "1", - "replication": "2" - }, - "ceph_total_space_gib": 0, - "cinder_pool_gib": 0, - "created_at": "2018-03-07T18:56:22.525053+00:00", - "ephemeral_pool_gib": null, - "glance_pool_gib": null, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph/6320a6d5-e3d7-4e63-a02c-964b9a4460f8", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph/6320a6d5-e3d7-4e63-a02c-964b9a4460f8", - "rel": "bookmark" - } - ], - "name": "gold-store", - "object_gateway": false, - "object_pool_gib": null, - "services": "cinder", - "state": "configured", - "task": null, - "tier_name": "gold", - "tier_uuid": "270e8fa4-8f38-4410-a54a-8e44d8f24f6f", - "updated_at": "2018-03-07T18:56:56.221489+00:00", - "uuid": "6320a6d5-e3d7-4e63-a02c-964b9a4460f8" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-request.json deleted file mode 100644 index 1dd919629..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "path": "/capabilities", - "value": "{\\"min_replication\\": \\"2\\"}", - "op": "replace" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-response.json deleted file mode 100644 index 2861d03ac..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_modify-response.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "backend": "ceph", - "capabilities": { - "min_replication": "2", - "replication": "2" - }, - "ceph_total_space_gib": 0, - "cinder_pool_gib": 0, - "confirmed": false, - "created_at": "2018-01-04T11:15:41.957698+00:00", - "ephemeral_pool_gib": 0, - "glance_pool_gib": 20, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph/3f14980c-018f-4f6c-8bfb-82d7c665df06", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph/3f14980c-018f-4f6c-8bfb-82d7c665df06", - "rel": "bookmark" - } - ], - "object_gateway": false, - "object_pool_gib": 0, - "services": "cinder,glance", - "state": "configured", - "task": null, - "updated_at": "2018-01-08T01:53:44.446623+00:00", - "uuid": "3f14980c-018f-4f6c-8bfb-82d7c665df06" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_show-response.json deleted file mode 100644 index 9a7dd89ab..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_ceph_show-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "backend": "ceph", - "capabilities": { - "min_replication": "1", - "replication": "2" - }, - "ceph_total_space_gib": 0, - "cinder_pool_gib": 27, - "created_at": "2018-03-04T07:19:51.699172+00:00", - "ephemeral_pool_gib": 0, - "glance_pool_gib": 21, - "links": [ - { - "href": "http://192.168.204.2:6385/v1/storage_ceph/bb6a60f6-7fe2-407d-afd0-21d8b6e2f128", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/storage_ceph/bb6a60f6-7fe2-407d-afd0-21d8b6e2f128", - "rel": "bookmark" - } - ], - "name": "ceph-store", - "object_gateway": true, - "object_pool_gib": 0, - "services": "cinder,glance,swift", - "state": "configured", - "task": "restore", - "tier_name": "storage", - "tier_uuid": "dcb41fcc-307a-4d0b-b5dd-af8c6a48a3c5", - "updated_at": "2018-03-08T06:13:02.485985+00:00", - "uuid": "bb6a60f6-7fe2-407d-afd0-21d8b6e2f128" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-request.json deleted file mode 100644 index 6c9703f1f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "new-shared-services", - "services": "cinder", - "confirmed": true -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-response.json deleted file mode 100644 index 289f96591..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_add-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "backend": "external", - "capabilities": {}, - "confirmed": false, - "created_at": "2018-03-08T19:12:34.419453+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_file/a9c3d775-8913-4b92-a091-3bd1b905a6a5", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_file/a9c3d775-8913-4b92-a091-3bd1b905a6a5", - "rel": "bookmark" - } - ], - "name": "new-shared-services", - "services": "glance", - "state": "configuring", - "task": null, - "updated_at": null, - "uuid": "a9c3d775-8913-4b92-a091-3bd1b905a6a5" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_list-response.json deleted file mode 100644 index a405401ea..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "storage_external": [ - { - "backend": "external", - "capabilities": {}, - "created_at": "2018-03-08T07:28:59.840381+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_external/38803ac0-aa33-431f-ae43-e09d86eb4fa5", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_external/38803ac0-aa33-431f-ae43-e09d86eb4fa5", - "rel": "bookmark" - } - ], - "name": "shared_services", - "services": "glance", - "state": "configured", - "task": null, - "updated_at": null, - "uuid": "38803ac0-aa33-431f-ae43-e09d86eb4fa5" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_modify-request.json deleted file mode 100644 index 65ab44d76..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/services", - "value": "glance,cinder", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_modify-response.json deleted file mode 100644 index e69de29bb..000000000 diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_show-response.json deleted file mode 100644 index 445d87dad..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_external_show-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "backend": "external", - "capabilities": {}, - "confirmed": false, - "created_at": "2018-03-08T07:28:59.840381+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_external/38803ac0-aa33-431f-ae43-e09d86eb4fa5", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_external/38803ac0-aa33-431f-ae43-e09d86eb4fa5", - "rel": "bookmark" - } - ], - "name": "shared_services", - "services": "glance", - "state": "configured", - "task": null, - "updated_at": null, - "uuid": "38803ac0-aa33-431f-ae43-e09d86eb4fa5" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-request.json deleted file mode 100644 index 92cfd393e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "new-file-store", - "services": "glance", - "confirmed": true -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-response.json deleted file mode 100644 index 2ef390a89..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_add-response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "confirmed": false, - "task": null, - "uuid": "c70ab134-20f3-419f-8048-66ba9fae960d", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_file/c70ab134-20f3-419f-8048-66ba9fae960d", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_file/c70ab134-20f3-419f-8048-66ba9fae960d", - "rel": "bookmark" - } - ], - "created_at": "2018-02-07T09:19:35.077198+00:00", - "updated_at": null, - "capabilities": {}, - "name": "new-file-store", - "state": "configuring", - "services": "glance", - "backend": "file" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_list-response.json deleted file mode 100644 index 9ed989825..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "storage_file": [ - { - "backend": "file", - "capabilities": {}, - "created_at": "2018-03-08T05:29:55.246907+00:00", - "links": [ - { - "href": "http://192.168.144.2:6385/v1/storage_file/e9e734b0-8143-4835-b70a-21267f5d8ca9", - "rel": "self" - }, - { - "href": "http://192.168.144.2:6385/storage_file/e9e734b0-8143-4835-b70a-21267f5d8ca9", - "rel": "bookmark" - } - ], - "name": "file-store", - "services": "glance", - "state": "configured", - "task": null, - "updated_at": "2018-03-08T05:29:59.518621+00:00", - "uuid": "e9e734b0-8143-4835-b70a-21267f5d8ca9" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-request.json deleted file mode 100644 index 65ab44d76..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/services", - "value": "glance,cinder", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-response.json deleted file mode 100644 index b5c66e7b2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_modify-response.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "error_message": "{\"debuginfo\": null, \"faultcode\": \"Client\", \"faultstring\": \"Service cinder is not supported for the file backend\"}" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_show-response.json deleted file mode 100644 index 1684d75a6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_file_show-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "backend": "file", - "capabilities": {}, - "confirmed": false, - "created_at": "2018-03-08T19:12:34.419453+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_file/a9c3d775-8913-4b92-a091-3bd1b905a6a5", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_file/a9c3d775-8913-4b92-a091-3bd1b905a6a5", - "rel": "bookmark" - } - ], - "name": "file-store", - "services": "glance", - "state": "configured", - "task": null, - "updated_at": "2018-03-08T19:12:34.463159+00:00", - "uuid": "a9c3d775-8913-4b92-a091-3bd1b905a6a5" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-request.json deleted file mode 100644 index 69a682b9a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "services": "cinder", - "confirmed": true -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-response.json deleted file mode 100644 index e1c3d3289..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_add-response.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "confirmed": false, - "task": null, - "name": "lvm-store", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_lvm/5798d210-bbfc-436a-84f3-66dfd1d18aef", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_lvm/5798d210-bbfc-436a-84f3-66dfd1d18aef", - "rel": "bookmark" - } - ], - "created_at": "2018-02-07T07:47:42.841988+00:00", - "uuid": "5798d210-bbfc-436a-84f3-66dfd1d18aef", - "capabilities": {}, - "updated_at": null, - "state": "configuring", - "services": "cinder", - "backend": "lvm" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_list-response.json deleted file mode 100644 index b3d707212..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "storage_lvm": [ - { - "backend": "lvm", - "capabilities": {}, - "created_at": "2018-03-08T07:52:40.795489+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_lvm/4d966cf9-c721-4d44-b9f8-7b7f98e4dc89", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_lvm/4d966cf9-c721-4d44-b9f8-7b7f98e4dc89", - "rel": "bookmark" - } - ], - "name": "lvm-store", - "services": "cinder", - "state": "configured", - "task": null, - "updated_at": "2018-03-08T07:55:07.253739+00:00", - "uuid": "4d966cf9-c721-4d44-b9f8-7b7f98e4dc89" - } - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-request.json deleted file mode 100644 index 66e21b0c6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/services", - "value": "cinder,glance", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-response.json deleted file mode 100644 index 909ce17c8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_modify-response.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "error_message": "{\"debuginfo\": null, \"faultcode\": \"Client\", \"faultstring\": \"Service glance is not supported for the lvm backend\"}" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_show-response.json deleted file mode 100644 index 93f10d315..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_lvm_show-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "backend": "lvm", - "capabilities": {}, - "confirmed": false, - "created_at": "2018-03-08T07:52:40.795489+00:00", - "links": [ - { - "href": "http://192.168.144.103:6385/v1/storage_lvm/4d966cf9-c721-4d44-b9f8-7b7f98e4dc89", - "rel": "self" - }, - { - "href": "http://192.168.144.103:6385/storage_lvm/4d966cf9-c721-4d44-b9f8-7b7f98e4dc89", - "rel": "bookmark" - } - ], - "name": "lvm-store", - "services": "cinder", - "state": "configured", - "task": null, - "updated_at": "2018-03-08T07:55:07.253739+00:00", - "uuid": "4d966cf9-c721-4d44-b9f8-7b7f98e4dc89" -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-request.json deleted file mode 100644 index 5cb8abd7f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "new-tier", - "type": "ceph", - "cluster_uuid": "ba42aa45-7094-4bcd-b094-2848816441a3" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-response.json deleted file mode 100644 index 90db103a2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_add-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "status": "defined", - "uuid": "5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "rel": "bookmark" - } - ], - "stors": [], - "created_at": "2018-02-07T09:27:24.482961+00:00", - "istors": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780/istors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780/istors", - "rel": "bookmark" - } - ], - "updated_at": null, - "capabilities": {}, - "cluster_uuid": "ba42aa45-7094-4bcd-b094-2848816441a3", - "backend_uuid": null, - "type": "ceph", - "forclusterid": 1, - "name": "new-tier" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_list-response.json deleted file mode 100644 index b7e36bb1c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_list-response.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "storage_tiers": [ - { - "status": "in-use", - "uuid": "70184946-7b3e-4833-a4f8-e46edf006e37", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37", - "rel": "bookmark" - } - ], - "stors": [], - "created_at": "2018-02-07T04:34:27.078558+00:00", - "updated_at": "2018-02-07T08:39:00.950066+00:00", - "capabilities": {}, - "cluster_uuid": "ba42aa45-7094-4bcd-b094-2848816441a3", - "backend_uuid": "253f5801-e8bc-468d-a040-1bfa918541ac", - "type": "ceph", - "name": "storage" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-request.json deleted file mode 100644 index a9833be5d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/name", - "value": "really-new-tier", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-response.json deleted file mode 100644 index 9295d9594..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_modify-response.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "status": "defined", - "uuid": "5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780", - "rel": "bookmark" - } - ], - "stors": [], - "created_at": "2018-02-07T09:27:24.482961+00:00", - "istors": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780/istors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/5ff4a489-dcbc-4fd2-a04a-1a95f4a45780/istors", - "rel": "bookmark" - } - ], - "updated_at": null, - "capabilities": {}, - "cluster_uuid": "ba42aa45-7094-4bcd-b094-2848816441a3", - "backend_uuid": null, - "type": "ceph", - "forclusterid": 1, - "name": "really-new-tier" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_show-response.json deleted file mode 100644 index 65a61eba8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_tier_show-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "status": "in-use", - "uuid": "70184946-7b3e-4833-a4f8-e46edf006e37", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37", - "rel": "bookmark" - } - ], - "stors": [], - "created_at": "2018-02-07T04:34:27.078558+00:00", - "istors": [ - { - "href": "http://10.10.10.2:6385/v1/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37/istors", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/storage_tiers/70184946-7b3e-4833-a4f8-e46edf006e37/istors", - "rel": "bookmark" - } - ], - "updated_at": "2018-02-07T08:39:00.950066+00:00", - "capabilities": {}, - "cluster_uuid": "ba42aa45-7094-4bcd-b094-2848816441a3", - "backend_uuid": "253f5801-e8bc-468d-a040-1bfa918541ac", - "type": "ceph", - "name": "storage" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_usage_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_usage_list-response.json deleted file mode 100644 index a7968c2e0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/storage_usage_list-response.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - { - "free_capacity": 7.48, - "service_name": "glance", - "total_capacity": 7.84, - "name": "file-store", - "backend": "file" - }, - { - "free_capacity": 6.9, - "service_name": "cinder", - "total_capacity": 6.9, - "name": "lvm-store", - "backend": "lvm" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sysinv-versions-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sysinv-versions-response.json deleted file mode 100644 index 964df10ec..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/sysinv-versions-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "default_version":{ - "id":"v1", - "links":[ - { - "href":"http://128.224.150.54:6385/v1/", - "rel":"self" - } - ] - }, - "versions":[ - { - "id":"v1", - "links":[ - { - "href":"http://128.224.150.54:6385/v1/", - "rel":"self" - } - ] - } - ], - "description":"Titanium Cloud System API allows for the management of physical servers. This includes inventory collection and configuration of hosts, ports, interfaces, CPUs, disk, memory, and system configuration. The API also supports the configuration of the cloud's SNMP interface. ", - "name":"Titanium SysInv API" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health-response.json deleted file mode 100644 index c92bfd4e2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health-response.json +++ /dev/null @@ -1 +0,0 @@ -"System Health:\nAll hosts are provisioned: [OK]\nAll hosts are unlocked/enabled: [OK]\nAll hosts have current configurations: [OK]\nAll hosts are patch current: [OK]\nNo alarms: [OK]\n" \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health_upgrade-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health_upgrade-response.json deleted file mode 100644 index acccb8273..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_health_upgrade-response.json +++ /dev/null @@ -1 +0,0 @@ -"System Health:\nAll hosts are provisioned: [OK]\nAll hosts are unlocked/enabled: [OK]\nAll hosts have current configurations: [OK]\nAll hosts are patch current: [OK]\nNo alarms: [OK]\nRequired patches are applied: [OK]\nLicense valid for upgrade: [OK]\n" \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-request.json deleted file mode 100644 index c5fd7a679..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-request.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "path": "/name", - "value": "OTTAWA_LAB_WEST", - "op": "replace" - } - { - "path": "/description", - "value": "The Ottawa Cloud Test Lab - West Wing.", - "op": "replace" - } - { - "path": "/location", - "value": "350 Terry Fox Dr, Kanata, Ontario, Canada", - "op": "replace" - } - { - "path": "/contact", - "value": "support@windriver.com", - "op": "replace" - } - { - "path": "/system_mode", - "value": "duplex-direct", - "op": "replace" - } - { - "path": "/timezone", - "value": "UTC", - "op": "replace" - } - { - "path": "/sdn_enabled", - "value": "true", - "op": "replace" - } -] diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-response.json deleted file mode 100644 index dec269b4a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_modify-response.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "isystems": [ - { - "links": [ - { - "href": "http://192.168.204.2:6385/v1/isystems/5ce48a37-f6f5-4f14-8fbd-ac6393464b19", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/isystems/5ce48a37-f6f5-4f14-8fbd-ac6393464b19", - "rel": "bookmark" - } - ], - "description": "The Ottawa Cloud Test Lab - West Wing.", - "software_version": "18.03", - "updated_at": "2017-07-31T17:44:06.051441+00:00", - "created_at": "2017-07-31T17:35:46.836024+00:00", - "location": "350 Terry Fox Dr, Kanata, Ontario, Canada", - "capabilities": { - "sdn_enabled": true, - "shared_services": "[]", - "bm_region": "External", - "cinder_backend": "lvm", - "https_enabled": true, - "region_config": false - }, - "name": "OTTAWA_LAB_WEST", - "contact": "support@windriver.com", - "system_type": "Standard", - "system_mode": "duplex", - "timezone": "UTC", - "uuid": "5ce48a37-f6f5-4f14-8fbd-ac6393464b19" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_show-response.json deleted file mode 100644 index b70e11126..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/system_show-response.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "isystems": [ - { - "uuid": "67e5fca6-3580-4b06-acc8-3200dce794a4", - "software_version": "Golden Gate 14.08 3.4.103-ovp-ga2-rt120-WR5.0.1.17_standard ", - "name": "OTTAWA_LAB", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/isystems/67e5fca6-3580-4b06-acc8-3200dce794a4", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/isystems/67e5fca6-3580-4b06-acc8-3200dce794a4", - "rel": "bookmark" - } - ], - "created_at": "2014-09-17T19:08:11.325946+00:00", - "updated_at": "2014-09-24T14:35:38.091392+00:00", - "contact": null, - "location": null, - "description": "The Ottawa Cloud Test Lab.", - "system_type": "Standard", - "system_mode": "duplex", - "timezone": "UTC", - "capabilities": { - "sdn_enabled": false, - "shared_services": "[]", - "bm_region": "External", - "cinder_backend": "lvm", - "https_enabled": false, - "region_config": false - }, - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-request.json deleted file mode 100644 index 51fa1b8c6..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ip_address": "27.134.0.8", - "community": "sprint" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-response.json deleted file mode 100644 index 7379eadd7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_add-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "uuid": "22f0497c-0a09-41c4-8514-cb5afcbf930d", "links": - [ - { - "href": "http://192.168.204.2:6385/v1/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "bookmark" - } - ], - "type": "snmpv2c_trap", - "created_at": "2014-09-24T21:09:02.842231+00:00", - "updated_at": null, - "community": "sprint", - "ip_address": "27.134.0.8", - "port": 162, - "transport": "udp" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_list-response.json deleted file mode 100644 index 19fddb2a5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_list-response.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "itrapdest": [ - { - "uuid": "fc33945c-7aba-4d83-9216-a60db7097a23", "links": [ - { - "href": "http://192.168.204.2:6385/v1/itrapdest/fc33945c-7aba-4d83-9216-a60db7097a23", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/itrapdest/fc33945c-7aba-4d83-9216-a60db7097a23", - "rel": "bookmark" - } - ], - "ip_address": "10.10.10.1", - "community": "cgts", - "type": "snmpv2c_trap", - "port": 162, "transport": "udp" - }, - { - "uuid": "22f0497c-0a09-41c4-8514-cb5afcbf930d", "links": [ - { - "href": "http://192.168.204.2:6385/v1/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "bookmark" - } - ], - "ip_address": "27.134.0.8", - "community": "sprint", - "type": "snmpv2c_trap", - "port": 162, - "transport": "udp" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-request.json deleted file mode 100644 index 69b246f70..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-request.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "path": "/ip_address", - "value": "47.10.1.128", - "op": "replace" - }, - { - "path": "/community", - "value": "sprint", - "op": "replace" - } -] - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-response.json deleted file mode 100644 index 5efd610f3..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_modify-response.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "uuid": "22f0497c-0a09-41c4-8514-cb5afcbf930d", "links": [ - { - "href": "http://192.168.204.2:6385/v1/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "bookmark" - } - ], - "type": "snmpv2c_trap", - "created_at": "2014-09-24T21:09:02.842231+00:00", - "updated_at": "2014-09-24T21:13:51.061300+00:00", - "community": "sprint", - "ip_address": "47.10.1.128", - "port": 162, - "transport": "udp" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_show-response.json deleted file mode 100644 index 3e8d60fa2..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/trapdest_show-response.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "uuid": "22f0497c-0a09-41c4-8514-cb5afcbf930d", "links": [ - { - "href": "http://192.168.204.2:6385/v1/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/itrapdest/22f0497c-0a09-41c4-8514-cb5afcbf930d", - "rel": "bookmark" - } - ], - "type": "snmpv2c_trap", - "created_at": "2014-09-24T21:09:02.842231+00:00", - "updated_at": null, - "community": "sprint", - "ip_address": "27.134.0.8", - "port": 162, - "transport": "udp" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_delete-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_delete-response.json deleted file mode 100644 index d5405af8d..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_delete-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "uuid": "d0a6a564-0539-4f76-ab5f-2213e20193fe", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "bookmark" - } - ], - "created_at": "2017-02-27T17:10:40.033745+00:00", - "from_load": 1, - "from_release": "15.12", - "updated_at": "2017-03-06T17:51:43.906711+00:00", - "state": "completing", - "to_load": 2, - "to_release": "16.10", - "id": 1 -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-request.json deleted file mode 100644 index 9ae8a6126..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-request.json +++ /dev/null @@ -1 +0,0 @@ -[{"path": "/state", "value": "activation-requested", "op": "replace"}] \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-response.json deleted file mode 100644 index de8306144..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_patch-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "uuid": "d0a6a564-0539-4f76-ab5f-2213e20193fe", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "bookmark" - } - ], - "created_at": "2017-02-27T17:10:40.033745+00:00", - "from_load": 1, - "from_release": "15.12", - "updated_at": "2017-03-06T16:36:23.294777+00:00", - "state": "activation-requested", - "to_load": 2, - "to_release": "16.10", - "id": 1 -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_show-response.json deleted file mode 100644 index bca94f9d7..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_show-response.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "upgrades": [ - { - "state": "activating", - "to_release": "16.10", - "uuid": "d0a6a564-0539-4f76-ab5f-2213e20193fe", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/upgrades/d0a6a564-0539-4f76-ab5f-2213e20193fe", - "rel": "bookmark" - } - ], - "from_release": "15.12" - } - ] -} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-request.json deleted file mode 100644 index e16d0c2c8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-request.json +++ /dev/null @@ -1 +0,0 @@ -{"force": false} \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-response.json deleted file mode 100644 index 73f4526d4..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/upgrade_start-response.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "uuid": "452298f3-dfd2-495f-9a4e-f611a03b93e6", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/upgrades/452298f3-dfd2-495f-9a4e-f611a03b93e6", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/upgrades/452298f3-dfd2-495f-9a4e-f611a03b93e6", - "rel": "bookmark" - } - ], - "created_at": "2017-03-07T16:35:36.662098+00:00", - "from_load": 1, - "from_release": "16.10", - "updated_at": null, - "state": "starting", - "to_load": 2, - "to_release": "18.03", - "id": 1 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/version-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/version-get-response.json deleted file mode 100644 index 964df10ec..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/version-get-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "default_version":{ - "id":"v1", - "links":[ - { - "href":"http://128.224.150.54:6385/v1/", - "rel":"self" - } - ] - }, - "versions":[ - { - "id":"v1", - "links":[ - { - "href":"http://128.224.150.54:6385/v1/", - "rel":"self" - } - ] - } - ], - "description":"Titanium Cloud System API allows for the management of physical servers. This includes inventory collection and configuration of hosts, ports, interfaces, CPUs, disk, memory, and system configuration. The API also supports the configuration of the cloud's SNMP interface. ", - "name":"Titanium SysInv API" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/versionv1-get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/versionv1-get-response.json deleted file mode 100644 index 2ad1ad8d5..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/versionv1-get-response.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "ihosts":[ - { - "href":"http://128.224.150.54:6385/v1/ihosts/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/ihosts/", - "rel":"bookmark" - } - ], - "media_types":[ - { - "base":"application/json", - "type":"application/vnd.openstack.sysinv.v1+json" - } - ], - "links":[ - { - "href":"http://128.224.150.54:6385/v1/", - "rel":"self" - }, - { - "href":"http://www.windriver.com/developer/sysinv/dev/api-spec-v1.html", - "type":"text/html", - "rel":"describedby" - } - ], - "inode":[ - { - "href":"http://128.224.150.54:6385/v1/inode/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/inode/", - "rel":"bookmark" - } - ], - "imemory":[ - { - "href":"http://128.224.150.54:6385/v1/imemory/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/imemory/", - "rel":"bookmark" - } - ], - "idns":[ - { - "href":"http://128.224.150.54:6385/v1/idns/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/idns/", - "rel":"bookmark" - } - ], - "iuser":[ - { - "href":"http://128.224.150.54:6385/v1/iuser/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/iuser/", - "rel":"bookmark" - } - ], - "itrapdest":[ - { - "href":"http://128.224.150.54:6385/v1/itrapdest/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/itrapdest/", - "rel":"bookmark" - } - ], - "istorconfig":[ - { - "href":"http://128.224.150.54:6385/v1/istorconfig/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/istorconfig/", - "rel":"bookmark" - } - ], - "iextoam":[ - { - "href":"http://128.224.150.54:6385/v1/iextoam/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/iextoam/", - "rel":"bookmark" - } - ], - "intp":[ - { - "href":"http://128.224.150.54:6385/v1/intp/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/intp/", - "rel":"bookmark" - } - ], - "isystems":[ - { - "href":"http://128.224.150.54:6385/v1/isystems/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/isystems/", - "rel":"bookmark" - } - ], - "iprofile":[ - { - "href":"http://128.224.150.54:6385/v1/iprofile/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/iprofile/", - "rel":"bookmark" - } - ], - "icpu":[ - { - "href":"http://128.224.150.54:6385/v1/icpu/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/icpu/", - "rel":"bookmark" - } - ], - "icommunity":[ - { - "href":"http://128.224.150.54:6385/v1/icommunity/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/icommunity/", - "rel":"bookmark" - } - ], - "iinfra":[ - { - "href":"http://128.224.150.54:6385/v1/iinfra/", - "rel":"self" - }, - { - "href":"http://128.224.150.54:6385/iinfra/", - "rel":"bookmark" - } - ], - "id":"v1", -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-request.json deleted file mode 100644 index 55b1a15ef..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-request.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "function":"osd", - "ihost_uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "idisk_uuid":"4da10410-2959-46df-b571-04e954c0e115", - "journal_location":"0929aa31-ee1a-406d-82b1-308be72b300a", - "journal_size":1024, -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-response.json deleted file mode 100644 index 332704c8f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_add-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "function":"osd", - "uuid":"31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "journal_location":"0929aa31-ee1a-406d-82b1-308be72b300a", - "journal_size_mib":1024, - "journal_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-2.0-part2", - "journal_node": "/dev/sdb2", - "tier_name": "storage", - "tier_uuid": "dcb41fcc-307a-4d0b-b5dd-af8c6a48a3c5", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"bookmark" - } - ], - "idisks":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0/idisks", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0/idisks", - "rel":"bookmark" - } - ], - "created_at":"2014-10-01T21:41:23+00:00", - "updated_at":null, - "idisk_uuid":"4da10410-2959-46df-b571-04e954c0e115", - "ihost_uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "state":null, - "capabilities":{ - - }, - "osdid":2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-request.json deleted file mode 100644 index fc771aa4b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "journal_location":"e0f12323-f9b9-4ca0-a79b-bc9e7a6d7084", - "journal_size_mib":2500, -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-response.json deleted file mode 100644 index 6b4221c52..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_edit-response.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "function":"osd", - "uuid":"31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "journal_location":"e0f12323-f9b9-4ca0-a79b-bc9e7a6d7084", - "journal_size_mib":2500, - "journal_path": "/dev/disk/by-path/pci-0000:00:0d.0-ata-3.0-part1", - "journal_node": "/dev/sdc1", - "tier_name": "storage", - "tier_uuid": "dcb41fcc-307a-4d0b-b5dd-af8c6a48a3c5", - "links":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"bookmark" - } - ], - "idisks":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0/idisks", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0/idisks", - "rel":"bookmark" - } - ], - "created_at":"2014-10-01T21:41:23+00:00", - "updated_at":null, - "idisk_uuid":"4da10410-2959-46df-b571-04e954c0e115", - "ihost_uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "state":null, - "capabilities":{ - - }, - "osdid":2 -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_list-response.json deleted file mode 100644 index 7cfd0500c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_list-response.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "istors":[ - { - "function":"osd", - "uuid":"31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "journal_location":"0929aa31-ee1a-406d-82b1-308be72b300a", - "journal_size_mib":2500, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"bookmark" - } - ], - "created_at":"2014-10-01T21:41:23.973344+00:00", - "updated_at":"2014-10-01T21:41:24.129134+00:00", - "capabilities":{ - - }, - "ihost_uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "state":null, - "osdid":2 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-request.json deleted file mode 100644 index fc771aa4b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "journal_location":"e0f12323-f9b9-4ca0-a79b-bc9e7a6d7084", - "journal_size_mib":2500, -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-response.json deleted file mode 100644 index a84d2107e..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_modify-response.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - TBD - TBD - TBD -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_show-response.json deleted file mode 100644 index 5f321ea3a..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volume_show-response.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "istors":[ - { - "function":"osd", - "uuid":"31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "journal_location":"0929aa31-ee1a-406d-82b1-308be72b300a", - "journal_size":1024, - "links":[ - { - "href":"http://192.168.204.2:6385/v1/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"self" - }, - { - "href":"http://192.168.204.2:6385/istors/31c7a5a3-9154-462a-9ea3-ab5c5e0d06e0", - "rel":"bookmark" - } - ], - "created_at":"2014-10-01T21:41:23.973344+00:00", - "updated_at":"2014-10-01T21:41:24.129134+00:00", - "capabilities":{ - - }, - "ihost_uuid":"42d72247-e0e3-4a5a-8cb1-40bbee52c8db", - "state":null, - "osdid":2 - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-request.json deleted file mode 100644 index bfb84f8ed..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-request.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "lvm_vg_name":"nova-local", - "ihost_uuid":"a0f0a6d5-75ad-4769-8e0e-3a7c7c0ce783" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-response.json deleted file mode 100644 index 69517ce69..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_add-response.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "lvm_vg_access": null, - "lvm_vg_size": 0, - "lvm_max_lv": 0, - "lvm_vg_free_pe": 0, - "uuid": "11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ilvgs/11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ilvgs/11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24", - "rel": "bookmark" - } - ], - "lvm_cur_lv": 0, - "created_at": "2015-03-11T04:52:32.007904+00:00", - "lvm_max_pv": 0, - "updated_at": null, - "capabilities": {}, - "vg_state": "adding", - "ihost_uuid": "a0f0a6d5-75ad-4769-8e0e-3a7c7c0ce783", - "ipvs": [ - { - "href": "http://10.10.10.2:6385/v1/ilvgs/11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24/ipvs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ilvgs/11ac6dfc-a5ea-4cc9-a0c9-50afb13f7b24/ipvs", - "rel": "bookmark" - } - ], - "lvm_cur_pv": 0, - "lvm_vg_uuid": null, - "lvm_vg_total_pe": 0, - "lvm_vg_name": "nova-local" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_list-response.json deleted file mode 100644 index a81cfe136..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_list-response.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "ilvgs": [ - { - "lvm_vg_access": "wz--n-", - "lvm_vg_size": 7310671872, - "lvm_max_lv": 0, - "lvm_vg_free_pe": 1743, - "uuid": "039de9ef-b1db-4c31-9072-add0f888b8b9", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9", - "rel": "bookmark" - } - ], - "lvm_cur_lv": 0, - "created_at": "2015-03-11T02:46:55.730611+00:00", - "lvm_max_pv": 0, - "updated_at": "2015-03-11T02:50:57.361006+00:00", - "capabilities": {}, - "vg_state": "provisioned", - "ihost_uuid": "1ef159f8-0192-4879-a08e-f60328486e34", - "lvm_cur_pv": 1, - "lvm_vg_uuid": "u7NzxA-1LeR-G88h-3lMk-eFvo-YnL8-HT9SEP", - "lvm_vg_total_pe": 1743, - "lvm_vg_name": "nova-local" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-request.json deleted file mode 100644 index e7e9f12ea..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-request.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "path": "/capabilities", - "value": "{\\"instances_lv_size_mib\\": 10240}", - "op": "replace" - } -] \ No newline at end of file diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-response.json deleted file mode 100644 index 9408e25a8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_modify-response.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "lvm_vg_access": null, - "lvm_vg_size": 0, - "lvm_max_lv": 0, - "lvm_vg_free_pe": 0, - "uuid": "79926a38-f60c-4ede-8201-da8b009a07ee", - "links": [ - { - "href": "http://192.168.204.2:6385/v1/ilvgs/79926a38-f60c-4ede-8201-da8b009a07ee", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ilvgs/79926a38-f60c-4ede-8201-da8b009a07ee", - "rel": "bookmark" - } - ], - "lvm_cur_lv": 0, - "created_at": "2015-09-29T07:36:24.251731+00:00", - "lvm_max_pv": 0, - "updated_at": null, - "capabilities": { - "instances_lv_size_mib": 10240 - }, - "vg_state": "adding", - "ihost_uuid": "6b55a4c8-4194-4e3b-8d32-ca658473314e", - "ipvs": [ - { - "href": "http://192.168.204.2:6385/v1/ilvgs/79926a38-f60c-4ede-8201-da8b009a07ee/ipvs", - "rel": "self" - }, - { - "href": "http://192.168.204.2:6385/ilvgs/79926a38-f60c-4ede-8201-da8b009a07ee/ipvs", - "rel": "bookmark" - } - ], - "lvm_cur_pv": 0, - "lvm_vg_uuid": null, - "lvm_vg_total_pe": 0, - "lvm_vg_name": "nova-local" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_show-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_show-response.json deleted file mode 100644 index 27dd48ad0..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/api_samples/volumegroup_show-response.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "lvm_vg_access": "wz--n-", - "lvm_vg_size": 7310671872, - "lvm_max_lv": 0, - "lvm_vg_free_pe": 1743, - "uuid": "039de9ef-b1db-4c31-9072-add0f888b8b9", - "links": [ - { - "href": "http://10.10.10.2:6385/v1/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9", - "rel": "bookmark" - } - ], - "lvm_cur_lv": 0, - "created_at": "2015-03-11T02:46:55.730611+00:00", - "lvm_max_pv": 0, - "updated_at": "2015-03-11T02:50:57.361006+00:00", - "capabilities": {}, - "vg_state": "provisioned", - "ihost_uuid": "1ef159f8-0192-4879-a08e-f60328486e34", - "ipvs": [ - { - "href": "http://10.10.10.2:6385/v1/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9/ipvs", - "rel": "self" - }, - { - "href": "http://10.10.10.2:6385/ilvgs/039de9ef-b1db-4c31-9072-add0f888b8b9/ipvs", - "rel": "bookmark" - } - ], - "lvm_cur_pv": 1, - "lvm_vg_uuid": "u7NzxA-1LeR-G88h-3lMk-eFvo-YnL8-HT9SEP", - "lvm_vg_total_pe": 1743, - "lvm_vg_name": "nova-local" -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/common.ent deleted file mode 100644 index 87418597c..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/common.ent +++ /dev/null @@ -1,3985 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - - '> - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - - The universally unique identifier for this object. - - - - - For convenience, resources contain links to themselves. - This allows a client to easily obtain rather than construct - resource URIs. The following types of link relations are - associated with resources: a self link containing a versioned - link to the resource, and a bookmark link containing a permanent - link to a resource that is appropriate for long term storage. - - - - - The time when the object was created. - - - - - The time when the object was last updated. - - - '> - - - - - - - A user-specified name of the cloud system. The default value - is the system UUID. - - - - - A installed system type of the cloud system. - - - - - The system mode of the cloud system. - - - - - The timezone of the cloud system. - - - - - A user-specified description of the cloud system. - - - - - The user-specified location of the cloud system. - - - - - System capabilities. - - - sdn_enabled : (Boolean) Software Defined Networking enabled. - - - region_config : (Boolean) region selection: - - - true : Secondary region. - - - false : Primary region. - - - - - shared_services : Services provided by Primary region. - - - bm_region : Board Management controller network selection: - - - External : OAM network. - - - Internal : Management network. - - - - - cinder_backend : backend selection for Cinder. - - - vswitch_type : vSwitch selection. - - - security_feature : Selection of Spectre and Meltdown mitigation options. - - - https_enabled : (Boolean) selection of https mode for public URLs. - - - - - - - The user-specified contact for the cloud system. - - - - - Contains the Cloud Server Software Version and the - Software Version of the underlying Linux Kernel. - - - '> - - - - - - A name of the cloud cluster. - - - - - An installed cluster type of the cloud system. - - - - - A system generated unique identifier for this cluster in the cloud system. - - - - - The unique identifier of the underlying cluster instance represented by this cluster. - - - '> - - - - - A list of dictionaries for each replication group of storage host peers. - - - - - A list of dictionaries for each storage tier in the cluster - - - '> - - - - - - The name provisioned for the host. - - - - - The role of the host: controller, compute or storage. - - - - - The administrative state of the host; unlocked or locked. - - - - - The operational state of the host; enabled or disabled. - - - - - The availability state of the host; offline, online, - intest, available, degraded or - failed. - - - - - The management MAC of the host management interface. - - - - - - The management IP Address of the host. - - - - - - The current maintenance task in progress on the host. - - - - - - The serial id configured for the host. - - - - - - The board management type of the host. - - - - - - The board management username of the host. - - - - - - The board management IP Address of the host. - - - - - - Device used for boot partition, relative to /dev. Default: sda - - - - - Device used for rootfs and platform partitions, relative to /dev. Default: sda - - - - - Installation output format. Values are text or graphical. Default: text - - - - - Serial console configuration, specifying port and baud rate. Default: ttyS0,115200. - - - - - The configuration UUID applied to the host. - - - - - - The configuration target UUID of the host. - - - - - - The configuration status of the host. - - - - - - The uptime in seconds of the host. - - - - - - The location information of the host. - - - - - - - The list of roles supported by the host. Comma separated string. - For a host with compute role, the compute subfunction is configurable on - initial installation, and may be either: - compute or compute_lowlatency. - - - - - - The subfunction operational state, excluding - the primary role personality. - - - - - - The subfunction availability state, excluding - the primary role personality. - - - - - - The recordtype of the host: standard or - profile. - - - - - - Id value of the host. - - - - - - Action on the host in progress. - - - - - - The installation state of the host; preinstall, installing, postinstall, installed or failed. - - - - - - Progress information of the installation of the host. For example, installing 2/1040, indicating the number of packages installed out of the total packages to be installed. - - - - - - virtual infrastructure manager progress status. - - - - - - Serial port data carrier detect status. - - - - - - The version of the software currently running on the host. - - - - - - The version of the software requested to run on the host. - - - - - '> - - - - - - - Link to the ports resources on the host. - - - - - - Link to the network interfaces resources on the host. - - - - - - Link to the ethernet ports resources on the host. - - - - - - Link to the numa node resources on the host. - - - - - - Link to the memory resources on the host. - - - - - - Link to the disks resources on the host. - - - - - - Link to the storage resources on the host. - - - - - - Link to the physical volume storage resources on the host. - - - - - - Link to the logical volume group storage resources on the host. - - - - - - Serial port data carrier detect status. - - - - '> - - - - - - - The discovered name of the port, typically the Linux assigned device name, if available. - - - - - The user-specified name for the port. - - - - - The MAC Address of the port. - - - - - The PCI Address of the port. - - - - - Currently not supported. - - - - - Currently not supported. - - - - - The Maximum Transmission Unit (MTU) of the port, in bytes. - - - - - Currently not supported. - - - - - Indicates whether the port can be used for network booting. - - - - - Indicates the maximum number of VFs that this port can support. - - - - - Indicates the actual number of VFs configured for the interface using this port. - - - - - A comma-separated list of the PCI addresses of the configured VFs. - - - - - The driver being used for the port. Valid values are - ixgbe and igb. - - - - - - The class or type of the physical IO controller device of the port. - - - - - The primary vendor information of the port hardware. - - - - - The secondary vendor information of the port hardware. - - - - - The primary type and model information of the port hardware. - - - - - The secondary type and model information of the port hardware . - - - - - The UUID of the L2 interface of the port. - - - - - The NUMA Node of the port. - - - - - The UUID of the NUMA node of the port. - - - - - The UUID of the host containing the port. - - - '> - - - - - - - The user-specified name of the interface. - - - - - Indicates the type of network that this interface is - attached to; mgmt, oam, infra, none, - data, pci-passthrough or pci-sriov. - - - - - Indicates the type of L2 interface; ethernet or - ae (aggregated ethernet or link aggregation (LAG)) or vlan (virtual lan). - - - - - Only applicable if iftype : ae, - this attribute indicates the basic mode of operation for - the AE/LAG interface. Supported modes are: balanced round - robin, active-backup, balanced xor, broadcast, 802.3ad, - balance-tlb, balance-alb. NOTE only balanced xor and - active-standby modes are supported by interfaces of - networktype=data. - - - - - - Only applicable if iftype : ae and aemode : balanced, - this attribute indicates what packet headers the AE/LAG is using to distribute - packets across the different links/ports of the AE/LAG group; - layer2, layer2+3 or layer3+4. - - - - - Only applicable if iftype : vlan, - this attribute indicates that the vlan interface id. - A vlan id between 1 and 4094 (inclusive) must be selected. - NOTE The vlan id must be unique for the host interface. - - - - - - Only applicable if networktype : data, - this attribute provides a comma-separated list of - provider networks that this data interface - is attached to. - - - - - The MAC Address being used by the interface. In the case - of AE/LAG, the MAC address of one of the physical ports of - the AE/LAG group is used. - - - - - The Maximum Transmission Unit (MTU) of the interface, in bytes. - - - - - The number of VFs configured on the interfaces port; only applicable - if networktype = pci-sriov where only a - single port is associated with the interface. - - - - - Currently not supported. - - - - - The ID of the host of this interface. - - - - - The UUID of the host of this interface. - - - '> - - - - - - - The logical core number. - - - - - The NUMA Node or physical processor device of the logical core. - - - - - The physical core of the logical core. - - - - - The thread within the physical core of the logical core. - - - - - The function assigned to this logical core; valid values are - Platform, Vswitch, Shared or VMs . - Platform indicates the core is used for the host - kernel, Titanium Cloud and OpenStack Services, - Vswitch indicates the core is used by the - virtual switch, - Shared indicates that the core is reserved for - sharing by VMs using the hw:wrs:shared_vcpu flavor extra spec, - VMs indicates that the core is available for - use by VMs. - - - - - The CPU Family for the processor of the logical core. - - - - - The vendor, model, part number and other info related to the - processor device of the logical core. - - - - - The UUID of the host of the logical core. - - - - - The UUID of the NUMA Node of the logical core. - - - '> - - - - - - - The UUID of the host. - - - - - The NUMA node number. - - - - - The UUID of the NUMA node. - - - - - Memory reserved for the Kernel and Cloud Platform Services, - in MiBs. - - - - - Total memory reserved for the hosted Virtual Machines, - in MiBs. - - - - - Free / available memory from the total memory reserved for - the hosted Virtual Machines, in MiBs. - - - - - Boolean indicating whether huge page memory is configured - or not. - - - - - The size of a Virtual Switch (vSwitch) huge page, - in MiBs. - - - - - The total number of Virtual Switch (vSwitch) huge - pages. - - - - - The free / available Virtual Switch (vSwitch) huge pages. - - - - - The total number of Virtual Machine 1G huge pages. - - - - - The free / available Virtual Machine 1G huge pages. - - - - - If not null, the pending configured number of Virtual Machine - 1G huge pages. - - - - - The total number of Virtual Machine 2M huge pages. - - - - - The free / available Virtual Machine 2M huge pages. - - - - - If not null, the pending configured number of Virtual Machine - 2M huge pages. - - - '> - - - - - - - The name of the sensorgroup. - - - - - The entity path of the sensorgroup. - - - - - The sensortype of the sensors in the sensorgroup. - e.g. temperature, voltage, current, fan, - power, disk, watchdog, memory, - interrupt, firmware, hardware. - - - - - - The sensor datatype of the sensors in the sensorgroup. - e.g. discrete or analog - - - - - - The UUID of the host. - - - - - Specifies whether sensorgroup actions are suppressed. True specifies suppressed. - This attribute is user configurable and affects all sensors within the sensorgroup. - - - - - Specifies the audit interval time in seconds for the system sensor monitoring algorithm. - This attribute is user configurable and affects all sensors within the sensorgroup. - - - - - - For datatype analog sensors: the Critical Lower Threshold of the SensorGroup. - - - - - - For datatype analog sensors: the Critical Upper Threshold of the SensorGroup. - - - - - - For datatype analog sensors: the Major Lower Threshold of the SensorGroup. - - - - - - For datatype analog sensors: the Major Upper Threshold of the SensorGroup. - - - - - - For datatype analog sensors: the Minor Lower Threshold of the SensorGroup. - - - - - - For datatype analog sensors: the Minor Upper Threshold of the SensorGroup. - - - - - - - The unit base of the sensor. e.g. revolutions, C (Celcius), etc. - - - - - - The unit modifier of the sensor. e.g. 10^2 (*100). - - - - - The unit rate of the sensor. e.g. /h (per hour). - - - - - The system sensor algorithm version information. - - - - - - The actions to take upon critical threshold sensor event. e.g. alarm, ignore. - This attribute is user configurable and affects all sensors within the sensorgroup. - - - - - - The actions to take upon major threshold sensor event. e.g. alarm, ignore. - This attribute is user configurable and affects all sensors within the sensorgroup. - - - - - - The actions to take upon minor threshold sensor event. e.g. alarm, ignore. - This attribute is user configurable and affects all sensors within the sensorgroup. - - - - - '> - - - - - - The UUID of the sensorgroup. - - - - - Specifies whether sensor actions are suppressed. True specifies suppressed. - This attribute is user configurable. - - - - - The name of the sensor. - - - - - The entity path of the sensor. - - - - - The sensortype of the sensor. - e.g. temperature, voltage, fan, power - - - - - - The sensor datatype. e.g. discrete or analog - - - - - The sensor status: One of ok, minor, major, critical. - - - - - - The operational state of the sensor. - - - - - - The sensor action requested for the sensor. Only applicable to action sensors. - - - - - For datatype analog sensors: the Critical Lower Threshold of the Sensor. - - - - - - For datatype analog sensors: the Critical Upper Threshold of the Sensor. - - - - - - For datatype analog sensors: the Major Lower Threshold of the Sensor. - - - - - - For datatype analog sensors: the Major Upper Threshold of the Sensor. - - - - - - For datatype analog sensors: the Minor Lower Threshold of the Sensor. - - - - - - For datatype analog sensors: the Minor Upper Threshold of the Sensor. - - - - - - - The unit base of the sensor. e.g. revolutions, C (Celcius), etc. - - - - - - The unit modifier of the sensor. e.g. 10^2 (*100). - - - - - The unit rate of the sensor. e.g. /h (per hour). - - - - - The sensor algorithm version information. - - - - - - The actions to take upon critical threshold sensor event. e.g. alarm, ignore - - - - - - The actions to take upon major threshold sensor event. e.g. alarm, ignore - - - - - - The actions to take upon minor threshold sensor event. e.g. alarm, ignore - - - - - '> - - - - - - - - - Indicates that the record is being used for host profile - rather than a host. - - - - - The name of the profile. - - - '> - - - - Indicates that the record is being used for host profile - rather than a host. - - - - - The name of the profile. - - - - - Links to the ports of the profile. - - - - - Links to the interfaces of the profile. - - - - - Links to the disks of the profile. - - - - - Links to the partitions of the profile. - - - - - Links to the physical volume storage resources of - the profile. - - - - - - Links to the physical volumes of the profile. - - - - - - Links to the logical volume group storage resources of - the profile. - - - - - - Links to the NUMA Nodes of the profile. - - - - - Links to the logical cores (CPUs) of the profile. - - - '> - - - - - - - The SNMP GET/SET access control for a specific community. - - - - - The community string of which the SNMP client is a member. - - - - - The SNMP MIB view of which the community has access to. - - - - '> - - - - - - - The IP address of a specific trap destination. - - - - - The community of which the trap destination is a member. - - - - - The SNMP version of the trap message for a specific destination. - - - - - The port number of which SNMP manager is listening for traps. - - - - - The transport protocol used by the trap messages. - - - '> - - - - - - - The comma-separated list of DNS nameservers. - - - - - The System UUID which the DNS belongs to. - - - - '> - - - - - - The comma-separated list of NTP ntpservers. - - - - - The System UUID which the NTP belongs to. - - - - '> - - - - - - The External OAM IP Subnet. - - - - - The External OAM Gateway IP Address. - - - - - The External OAM Floating IP Address. - - - - - The External OAM Controller-0 IP Address. - - - - - The External OAM Controller-1 IP Address. - - - - - The System UUID which the External OAM IP belongs to. - - - - '> - - - - - - - The infrastructure network IP subnet. - - - - - The infrastructure network start IP address. - - - - - The infrastructure network end IP address. - - - - - The MTU of the infrastructure interface. - - - - - The VLAN id of the infrastructure interface. - - - - - The System UUID which the infrastructure network IP subnet belongs to. - - - - '> - - - - - - - The DRBD engineered link utilization percent during resync. - - - - - The DRBD number of parallel devices to resync. - - - - - The DRBD replication nodes round-trip-time milliseconds. - - - - - The System UUID which the DRBD link belongs to. - - - - '> - - - - - - - Additional capabilities info about the disk. - - - - - The device node of the disk. - - - - - The device path of the disk. - - - - - The device ID of the disk. - - - - - The device WWN of the disk. - - - - - The device number of the disk. - - - - - The disk device type. - - - - - The host UUID that the disk belongs to. - - - - - The node UUID that the disk belongs to. - - - - - The logical storage function that this disk belongs to. - - - - - The LVM physical volume that this disk belongs to. - - - - - The serial id or number of the disk. - - - - - The RPM of the disk. "Undetermined" if not specified. - "N/A", not applicable for SSDs or NVME disks. - - - - - - The size of the disk in MiBytes. - - - - - The unpartitioned size of the disk in MiBytes. - - - - '> - - - - - - - Set the partition table type to wipe and format the - disk. Supported values are gpt. - - - - - '> - - - - - - Additional capabilities info about the partition. - - - - - The device node of the partition. - - - - - The device path of the partition. - - - - - The host UUID that the partition belongs to. - - - - - The disk UUID that this partition belongs to. - - - - - The LVM physical volume that this partition belongs to. - - - - - The status of the partition. - - - - - The GUID for the partition type. - - - - - The name for the partition type. - - - - - The size of the partition in MiBytes. - - - - - The start of the partition MiBytes. - - - - - The end of the partition in MiBytes. - - - - '> - - - - - - - The name of the storage service. - - - - - A dictionary of storage backend capabilities. - - - - - - When "false" it will run in test mode without applying any - modification. This allow checking a request for validity before - performing non-reversible changes. When set to "true" the modifications - are immediately applied. - - - - - '> - - - - - - - Additional capabilities info about the storage function. - - - - - The storage function e.g. "osd" (object storage daemon) or - "journal" (backing stor for journals) for ceph. - - - - - The host UUID that the storage belongs to. - - - - - The System UUID which the storage belongs to. - - - - - The object storage daemon identifier of the storage function. - - - - - The journal stor on which the journal is kept. - - - - - The size of the journal. - - - - - The device path of the journal. - - - - - The device node of the journal. - - - - - The state info of the storage function. - - - - - The name of the storage tier that is using this storage function. - - - - - The UUID of the storage tier that is using this storage function. - - - - '> - - - - - - Additional capabilities info about the volume group. - - - - - - This is the state of the volume group which is one of the following: - unprovisioned, adding, provisioned, or removing. - - - - - - - This is the LVM volume group name as retrieved from the vgdisplay - command on the host. - - - - - - - This is the LVM generated volume group UUID as retrieved from the - vgdisplay command on the host. - - - - - - - This is the LVM generated volume group access status as retrieved - from the vgdisplay command on the host. - - - - - - - This is the LVM generated max number of logical volumes allowed as - retrieved from the vgdisplay command on the host. - - - - - - - This is the LVM generated current number of logical volumes as - retrieved from the vgdisplay command on the host. - - - - - - - This is the LVM generated max number of physical volumes allowed - as retrieved from the vgdisplay command on the host. - - - - - - - This is the LVM generated current number of physical volumes - as retrieved from the vgdisplay command on the host. - - - - - - - This is the LVM generated volume group size in bytes as retrieved - from the vgdisplay command on the host. - - - - - - - This is the LVM generated total number of physical extents within the - volume group as retrieved from the vgdisplay command on the host. - - - - - - - This is the LVM generated number of physical extents not allocated - within the volume group as retrieved from the vgdisplay command on - the host. - - - - - - The UUID of the host containing the port. - - - - '> - - - - - - Links to associated physical volumes. - - - - '> - - - - - - Additional capabilities info about the volume group. - - - - - - This is the state of the physical volume. It has one of the following - values: unprovisioned, adding, provisioned, or removing. - - - - - - - This is the type of physical volume that is allocated. This will have - the value of disk or partition. - - - - - - - This is the UUID of the device that is associated with this physical volume. - - - - - - - This is the device node name associated with the physical volume. - - - - - - - This is the device path associated with the physical partition. - - - - - - - This is the physical volume name as retrieved from the pvdisplay command - on the host. - - - - - - - This is the name of the volume group that this physical volume belongs as - retrieved from the pvdisplay command on the host. - - - - - - - This is the LVM generated UUID for the physical volume as retrieved from - the pvdisplay command on the host. - - - - - - - This is the LVM generated size in bytes of the physical volume as retrieved - from the pvdisplay command on the host. - - - - - - - This is the LVM generated total number of physical extents associated - with the physical volume as retrieved from the pvdisplay command on - the host. - - - - - - - This is the LVM generated number of allocated physical extents associated - with the physical volume as retrieved from the pvdisplay command on - the host. - - - - - - The UUID of the host containing the port. - - - - - The UUID of the volume group containing the physical volume. - - - - - The ID of the volume group containing the physical volume. - - - - '> - - - - - - Links to associated disks. - - - - - Links to associated partitions. - - - - '> - - - - - - - The user-specified name for the PCI device - - - - - The PCI Address of the device. - - - - - The class or type identifier of the physical IO controller device of the device. - - - - - The primary vendor identifier of the device hardware. - - - - - The primary type and model identifier of the devicehardware. - - - - - The class or type name of the physical IO controller device of the device. - - - - - The primary vendor name of the port hardware. - - - - - The primary type and model information of the device hardware. - - - - - The secondary vendor information of the device hardware. - - - - - The secondary type and model information of the device hardware. - - - - - Indicates the maximum number of VFs that this device can support. - - - - - Indicates the actual number of VFs configured for the interface using this device. - - - - - A comma-separated list of the PCI addresses of the configured VFs. - - - - - The driver being used for the device. - - - - - The availability status of the device. - - - - - Extra information about the device. - - - - - The NUMA Node of the device. - - - - - The UUID of the host containing the device. - - - '> - - - - - - The name of the service. - - - - - The section name within the configuration file - for the specified service. - - - - - The name of the service parameter. - - - - - The value of the service parameter. - - - '> - - - - - - The UUID of the host containing the lldp agent. - - - - - The name of the local port to which this lldp agent belongs. - - - - - The 802.1AB chassis identifier advertised by the lldp agent. - - - - - The 802.1AB port identifier advertised by the lldp agent. - - - - - The 802.1AB port descrioption advertised by the lldp agent. - - - - - The 802.1AB time to live advertised by the lldp agent. - - - - - The 802.1AB system description advertised by the lldp agent. - - - - - The 802.1AB system name advertised by the lldp agent. - - - - - The 802.1AB system capabilities advertised by the lldp agent. - - - - - The 802.1AB management address advertised by the lldp agent. - - - - - The 802.1AB link aggregation status advertised by the lldp agent. - - - - - The 802.1AB vlan names advertised by the lldp agent. - - - - - The 802.1AB MAC status advertised by the lldp agent. - - - - - The 802.1AB maximum frame size advertised by the lldp agent. - - - '> - - - - - - The UUID of the host containing the lldp neighbor. - - - - - The MAC service access point identifier of the lldp neighbor. - - - - - The name of the local port to which this lldp neighbor is connected. - - - - - The 802.1AB chassis identifier advertised by the lldp neighbor. - - - - - The 802.1AB port identifier advertised by the lldp neighbor. - - - - - The 802.1AB port descrioption advertised by the lldp neighbor. - - - - - The 802.1AB time to live advertised by the lldp neighbor. - - - - - The 802.1AB system description advertised by the lldp neighbor. - - - - - The 802.1AB system name advertised by the lldp neighbor. - - - - - The 802.1AB system capabilities advertised by the lldp neighbor. - - - - - The 802.1AB management address advertised by the lldp neighbor. - - - - - The 802.1AB link aggregation status advertised by the lldp neighbor. - - - - - The 802.1AB vlan names advertised by the lldp neighbor. - - - - - The 802.1AB port vlan id advertised by the lldp neighbor. - - - - - The 802.1AB protocol vlan ids advertised by the lldp neighbor. - - - - - The 802.1AB protocol ids advertised by the lldp neighbor. - - - - - The 802.1AB MAC status advertised by the lldp neighbor. - - - - - The 802.1AB maximum frame size advertised by the lldp neighbor. - - - '> - - - - - - The operational state of the service. - - - - - The id of the service. - - - - - The desired state of the service - - - - - The name of the service. - - - - - The name of the host which the service is running on. - - - '> - - - - - - Administrative state of the node. - - - - - The operational state of the node. - - - - - The name of the node. - - - - - The operational state of the node - - - - - The availability status of the node. - - - - - The id of the node. - - - '> - - - - - - The type of host that the service is running on. - - - - - The name of the service group. - - - - - The name of the node that the service is running on. - - - - - The state of the service. - - - - - The uuid of the service group. - - - '> - - - - - - This parameter specifies the IP address or FQDN of the - SDN controller. - - - - - - This parameter specifies the listening port number of the OVSDB - southbound API of the SDN controller. - - - - - - This parameter specifies the transport protocol to use for the - connection of the OVSDB protocol. Expected value is TCP. - Valid values are: UDP or TCP. - - - - - - This parameter specifies the administrative state of the - SDN controller. - Valid values are: enabled or disabled. - - - - '> - - - - - - IP Address of remote log server. - - - - - Remote log server enabled. - - - - - Remote log server transport protocol. - - - - - Remote log server port. - - - - - Remote log server TLS key file. - - - '> - - - - - - The uuid of the network resource. - - - - - The type of network resource. - - - - - The maximum IP packet length that is support on this network. - - - - - The transmission speed in megabits per second. - - - - - A boolean describing whether IP addresses are assigned by the user (False) or by the system (True). - - - - - The VLAN instance number (1-4094) if applicable. - - - - - The uuid of the address pool from which IP addresses are allocated or registered. - - - '> - - - - - - The name (or network type) of the address pool resource. - - - - - The IP address of the network. - - - - - The network address prefix length in bits. - - - - - A string representing the IP address allocation scheme; random to allocate in random order, or sequential to allocate in sequential order. - - - - - A python list, formatted as a JSON string, representing a series of start-end pairs which define the allocatable ranges of IP addresses in the pool. - - - '> - - - - - - - The uuid of the address pool resource. - - - '> - - - - - - - The interface uuid to which the address is assigned. - - - - - The IP address. - - - - - The IP address prefix length in bits. - - - '> - - - - - - - The uuid of the address resource. - - - - - The interface name to which the address is assigned. - - - - - Whether duplicate address detection is enabled on allocated addresses. - - - '> - - - - - - - The interface uuid to which the address is assigned. - - - - - The IP address of the network. - - - - - The network address prefix length in bits. - - - - - The IP address of the nexthop gateway device. - - - - - The IP route metric/weight. - - - '> - - - - - - The uuid of the route resource. - - - - - The interface name to which the address is assigned. - - - '> - - - - - - Name of this backend. - - - - - The type of the storage backend. - - - - - The admin state of the storage backend. - - - - - The current task of the storage backend when in "configuring" state. - - - - - The System UUID which the storage backend belongs to. - - - - - A dictionary of storage backend capabilities. - - - - - A comma separated list of backend services. - - - - '> - - - - - The name of the storage service. - - - - - A dictionary of storage backend capabilities. - - - - - - When "false" it will run in test mode without applying any - modification. This allow checking a request for validity before - performing non-reversible changes. When set to "true" the modifications - are immediately applied. - - - - - '> - - - - - - - - The name of the storage service. - - - - - The name of the storage backend. - - - - - The type of the storage backend. - - - - - The free storage capacity in GiB. - - - - - The total capacity in GiB. - - - '> - - - - - - - - - - - The cinder volumes pool quota in GiB. - - - - - The glance image pool quota in GiB. - - - - - The ephemeral pool quota in GiB. - - - - - The object gateway pool quota in GiB. - - - - - The total ceph pool space in GiB. - - - - - This specifies if object gateway is configured. - - - - - This specifies storage tier name this backend is using . - - - - - This specifies storage tier uuid this backend is using . - - - '> - - - - - - The Ceph External configuration file. - - - '> - - - - - - - - - - - - - - Name of this storage tier. - - - - - The type of storage tier. This maps to a backend type.. - - - - - The status of the storage tier: defined or in-use. - - - - - The list of osd ids assigned to this tier. - - - - - A dictionary of storage backend capabilities. - - - - - The backend UUID which is using this tier. - - - - - The cluster UUID which this tier is associated. - - - - - '> - - - - - - - The type of storage tier. This corresponds to the - backend type that will be attached to the tier. - Currently only a tier type of ceph is - supported. - - - - - - - The UUID of the backend that is attached to this tier. - The backend is attached to enable service(s) to use the - storage tier resources. - - - - - - - For tier type of ceph, this provides the - cluster_uuid that this tier is associated. - - - - - '> - - - - - - The name of the filesystem. - - - - - The size of the filesystem in GiB. - - - - - The logical volume of the filesystem. - - - - - Specifies if the filesystem is drbd replicated. - - - - - The state of the filesystem; None, availabe or drbd_fs_resizing_in_progress - - - '> - - - - The name of the filesystem. - - - - - The size of the filesystem in GiB. - - - '> - - - - The System UUID which the storage backend belongs to. - - - '> - - - - - - [Deprecated] The disk device node on the host that cgts-vg will be extended to create ceph-mon-lv. - - - - - [Deprecated] The disk device path on the host that cgts-vg will be extended to create ceph-mon-lv. - - - - - The name of host this ceph mon belongs to. - - - - - The ceph-mon-lv size in GiB, for Ceph backend only. - - - - - [Deprecated] The disk device on both controllers that cgts-vg will be extended to create ceph-mon-lv. - - - - - [Deprecated] The disk device on controller-0 that cgts-vg will be extended to create ceph-mon-lv. - - - - - [Deprecated] The disk device on controller-1 that cgts-vg will be extended to create ceph-mon-lv. - - - '> - - - - The UUID of this ceph monitor. - - - - - The System UUID which the storage backend belongs to. - - - '> - - - - - - The UUID of this load. - - - - - The state of the software load. - - - - - The id of the load. - - - - - A list of patches required before the system can upgrade to this load. - - - - - The software version of this load. - - - - - The software version this load can be upgraded from. - - - '> - - - - - - The state of the software upgrade. - - - - - The id of the load the system is upgrading from. - - - - - The software version the system is upgrading from. - - - - - The id of the load the system is upgrading to. - - - - - The software version the system is upgrading to. - - - '> - - - - The state of the software upgrade. - - - - - The software version the system is upgrading from. - - - - - The software version the system is upgrading to. - - - - - The universally unique identifier for this object. - - - - - For convenience, resources contain links to themselves. - This allows a client to easily obtain rather than construct - resource URIs. The following types of link relations are - associated with resources: a self link containing a versioned - link to the resource, and a bookmark link containing a permanent - link to a resource that is appropriate for long term storage. - - - '> - - - - - - The passphrase for the PEM file. - - - - - - This parameter specifies the type of System certificate. - Possible values are: ssl, tpm_mode, murano, murano_ca. - Default: ssl - - - - '> - - - - - - This name of a packaged license. - - - - - This status of a packaged license.(installed/uninstalled) - - - - - The expiry date of a packaged license. - - - '> - - - - - - The signature of the custom firewall rules. - - - '> - - - - - - The universally unique identifier for this object. - - - - - The uuid for the host. - - - - - The label provisioned for the host. - - - '> - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/sysinv-api-v1.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/sysinv-api-v1.wadl deleted file mode 100644 index 5c4a9f821..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/sysinv-api/v1/sysinv-api-v1.wadl +++ /dev/null @@ -1,7362 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of the system. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing host. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an address resource. - - - - - - - - - - - - - - - - - The unique identifier of a route resource. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing port. - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing interface. - - - - - - - - - - - - - - - - - The unique identifier of a cpu (logical processor core). - - - - - - - - - - - - - - - The unique identifier of a memory area. - - - - - - - - - - - - - - - - The unique identifier of a physical disk. - - - - - - - - - - - - - - - - The unique identifier of a physical partition. - - - - - - - - - - - - - - - - - The unique identifier of an existing Ceph storage function. - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing LVM volume group. - - - - - - - - - - - - - - - - - - The unique identifier of an existing LVM physical volume. - - - - - - - - - - - - - - - - The unique identifier of a sensorgroup. - - - - - - - - - - - - - - - - The unique identifier of a sensor. - - - - - - - - - - - - - - - - - - The unique identifier of an existing profile. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of the DNS for this system. - - - - - - - - - - - - - - - - The unique identifier of the NTP for this system. - - - - - - - - - - - - - - - - - The unique identifier of the External OAM for this system. - - - - - - - - - - - - - - - - - - The unique identifier of the infrastructure network subnet configuration for this system. - - - - - - - - - - - - - - - - - The unique identifier of the DRBD config for this system. - - - - - - - - - - - - - - - - - - The unique community string of an existing SNMP Community. - - - - - - - - - - - - - - - - - - - The unique identifier of an existing SNMP Trap Destination. - - - - - - - - - - - - - - - - - The unique identifier of an existing pci device. PCI address or name. - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of a service parameter. - - - - - - - - - - - - - - - - - - The system generated unique identifier of a cluster. - - - - - - - - - - - - - - - - The unique identifier of an existing lldp agent. - - - - - - - - - - - - - - - - The unique identifier of an existing lldp neighbor. - - - - - - - - - - - - - - - - The unique identifier of an existing service. - - - - - - - - - The name of an existing service. - - - - - - - - - - - - - - The unique identifier of an existing service node. - - - - - - - - - - - - - - - The unique identifier of an existing service group. - - - - - - - - - - - - - - - - - The unique identifier of the SDN controller. - - - - - - - - - - - - - - - - - - The unique identifier of a remotelogging settings entry. - - - - - - - - - - - - - - - - - The unique identifier of the address pool resource. - - - - - - - - - - - - - - - - - - The unique identifier of the network resource. - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of the storage backend. - - - - - - - - - - - - - - - - - - The unique identifier of the storage backend. - - - - - - - - - - - - - - - - - - The unique identifier of the storage backend. - - - - - - - - - - - - - - - - - - The unique identifier of the storage backend. - - - - - - - - - - - - - - - - - - The unique identifier of the storage backend. - - - - - - - - - - - - - - - - - - The unique identifier of the storage tier resource. - - - - - - - - - - - - - - - - - The unique identifier of the controller filesystem. - - - - - - - - - - - - - - - - The unique identifier of Ceph monitor. - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of the load. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of the Certificate configuration. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The unique identifier of an existing host. - - - - - - - - - - The unique identifier of an existing host label. - - - - - - - - - - - - - - - - - API version details. - - - - - - - - - - - - - - - - - Lists information about all Titanium Cloud System Inventory API versions. - - - - - - - - - &commonFaults; &getFaults; - - - - - Shows details for System Inventory API v1. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - Lists all host entities. - - - - - - - - The list of host entities. - - - &hostListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific host. - - - - - - - - Indicates whether the host has the minimum level of provisioning or not. - Only a provisioned host can be unlocked. - - - &hostListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Creates a host. - Note that a host should only be added through the REST API if the system is - not already configured to be automatically added by the system. - This is determined by configuration option during config_controller at - system installation. - - - - - - - - The hostname for the host. Must be a unique name. - - - - - The role of of this host: - i.e. controller, storage, compute - . - - - - - The MAC address of the host's management interface. Must be unique. - - - - - The IP address of the host's management interface. Must be unique. - - - - - This attribute specifies whether board management controller type is - bmc. - - bmc enables Board Management Controller. - Default is None to indicate no board management controller. - If bm_type is specified, then bm_ip, bm_username, - and bm_password are also required. - - - - - - Only applicable if bm_type is not None. - This attribute specifies the host's board management controller interface IP - address. bm_ip is not allowed to be added if the system is configured - with board management (e.g. board management subnet and vlan) at installation - (config_controller). - - - - - - Only applicable if bm_type is not None. - This attribute specifies the host's board management controller username. - - - - - - Only applicable if bm_type is not None. - This attribute specifies the host's board management controller password. - - - - - - Device used for boot partition, relative to /dev. Default: sda - - - - - Device used for rootfs and platform partitions, relative to /dev. Default: sda - - - - - Installation output format. Values are 'text' or 'graphical'. Default: text - - - - - Serial console configuration, specifying port and baud rate. Default: 'ttyS0,115200'. - - - - - This attribute specifies whether serial port data carrier detect is enabled. - - - - - The location of the host. - Must be a dictinoary with a single parameter 'locn'. - - - - - - - - - - - - - - &hostListShowParameters; - &hostAddParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; - - - - - - Creates multiple hosts from a template. - Accepts an XML file containing the specifications of hosts - to be added to the system and performs a host-add for each. - Refer to the Administration Guide for XML specifications. - - - - - - - - - - - - - - - - &commonFaults; - - - - - - Export hosts definition file from an existing system. - Output XML string is well formatted (with line breaks and indent) - - - - - - - - - &commonFaults; - - - - - - Modifies a specific host. - The atrributes of a Host which are modifiable: - - personality, - hostname, - bm_type, - bm_ip, - bm_username, - bm_password, - serialid, - location, - boot_device, - rootfs_device, - install_output, - console, - ttys_dcd. - - - - - - - - - The name provisioned for the host. - - - - - The role of the host: controller, compute or storage. - - - - - The board management type of the host. - - - - - - The board management username of the host. - - - - - - The board management IP Address of the host. - - - - - - The serial id configured for the host. - - - - - - The location information of the host. - - - - - - Device used for boot partition, relative to /dev. Default: sda - - - - - Device used for rootfs and platform partitions, relative to /dev. Default: sda - - - - - Installation output format. Values are 'text' or 'graphical'. Default: text - - - - - Serial console configuration, specifying port and baud rate. Default: 'ttyS0,115200'. - - - - - This attribute specifies whether serial port data carrier detect is enabled. - - - - - - - - - - - - - - &hostListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Executes an action on a specific host. - - - - - - - - Perform one of the following actions to the host: - Valid values are: unlock, - lock, - swact, - apply-profile, - reboot, - reset, - power-on, - power-off, - or reinstall. - - - - - - - - - - - - - - - &hostListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific host. - - - - - - - - - - - - - - - - List the physical ports of a host. - - - - - - - - The list of physical ports of a host. - - - &portListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific physical port. - - - - - - &portListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - List the L2 interfaces of a specific host. - - - - - - - - The list of L2 interfaces for a specific host. - - - &interfaceListShowParameters; - &commonListShowParameters; - - - Interfaces which the current interface uses. - - - - - - Interfaces which use the current interface. - - - - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific L2 interface. - - - - - - &interfaceListShowParameters; - - - Currently not supported. - - - - - - Currently not supported. - - - - - - URIs to the physical ports of this interface. - - - - - - Interfaces which the current interface uses. - - - - - - Interfaces which use the current interface. - - - - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Creates an L2 interface on a specific host. - Note that mgmt and oam - can only be added through the REST API if their networktype is unassigned to none. - mgmt and oam are automatically added by the - system by default. - - - - - - - - The name for the interface. - - - - - The type of network that this interface will be attached to; - i.e. mgmt, infra, oam, - data, pci-passthrough, pci-sriov, - infra. - - - - - The type of interface; i.e. ae or - vlan. - - - - - Only applicable if iftype : ae, - this attribute specifies whether the AE/LAG should operate as balanced - or active_standby or 802.3ad across its links. - The balanced and active_standby are the only modes - supported by data type interface. For mgmt - type interface the 802.3ad option must be selected. - - - - - - Only applicable if iftype : ae and aemode : balanced, - this attribute specifies what packet headers the AE/LAG should use to distribute - packets across the different links/ports of the AE/LAG group; - layer2, layer2+3 or layer3+4. - - - - - Only applicable if iftype : vlan, - this attribute specifies a virtual lan id for a vlan interface type. - - - - - - Only applicable if networktype : data, - this attribute specifies a comma-separated list of - provider networks that this data interface - is attached to. - - - - - This attribute specifies a comma-separated list of - ports that this interface contains. If iftype : ethernet - then only one port is allowed. - - - - - Only applicable if iftype : ae or iftype: vlan, - this attribute specifies a comma-separated list of - interfaces that this interface uses. - - - - - This attribute specifies a comma-separated list of - interfaces that use this interface. - - - - - This attribute specifies the interface's Maximum Transmit Unit. - - - - - The number of VFs to configure on the interface's port; only applicable - if networktype = pci-sriov where only a - single port is associated with the interface. - - - - - The UUID of the host to create the interface on. - - - - - - - - - - - - - - &interfaceListShowParameters; - - - Currently not supported. - - - - - - Currently not supported. - - - - - - URIs to the physical ports of this interface. - - - - - - Interfaces which the current interface uses. - - - - - - Interfaces which use the current interface. - - - - - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Modifies a specific L2 interface. - - - - - - - - The name for the interface. - - - - - The type of network that this interface will be attached to; - i.e. mgmt, infra, oam, - data, pci-passthrough, pci-sriov, - infra or none. - - - - - The type of interface; i.e. ethernet or ae or - vlan. - - - - - Only applicable if iftype : ae, - this attribute specifies whether the AE/LAG should operate as balanced - or active_standby across its links. These are - the only modes supported by data type interface. - - - - - Only applicable if iftype : ae and aemode : balanced, - this attribute specifies what packet headers the AE/LAG should use to distribute - packets across the different links/ports of the AE/LAG group; - layer2, layer2+3 or layer3+4. - - - - - Only applicable if iftype : vlan, - this attribute specifies a virtual lan id for a vlan interface type. - - - - - - Only applicable if networktype : data, - this attribute specifies a comma-separated list of - provider networks that this data interface - is attached to. - - - - - This attribute specifies a comma-separated list of - ports that this interface contains. If iftype : ethernet - then only one port is allowed. - - - - - Only applicable if iftype : ae or iftype: vlan, - this attribute specifies a comma-separated list of - interfaces that this interface uses. - - - - - This attribute specifies a comma-separated list of - interfaces that use this interface. - - - - - This attribute specifies the interface's Maximum Transmit Unit. - - - - - The number of VFs to configure on the interface's port; only applicable - if networktype = pci-sriov where only a single - port is associated with the interface. - - - - - - - - - - - - - - &interfaceListShowParameters; - - - Currently not supported. - - - - - - Currently not supported. - - - - - - URIs to the physical ports of this interface. - - - - - - Interfaces which the current interface uses. - - - - - - Interfaces which use the current interface. - - - - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific L2 interface. - - - - - - - - - - - - - - - - - Shows attributes of the System object. - - - - - - &systemListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies attributes of the System object. - The attributes of the System object that are modifiable are: - - name, - system_mode, - timezone, - description, - location, - sdn_enabled, - contact. - - - - - - - - - - - - - - - - - - - - Links for retreiving the list of hosts for this system. - - - - &systemListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Lists all cluster entities. - - - - - - - - The list of cluster entities. - - - &clusterListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific cluster. - - - - - - &clusterListShowParameters; - &clusterShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Lists all cpus (logical processor cores) of a host. - - - - - - - - The list of cpus (logical processor cores) of a host. - - - &cpuListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific cpu (logical processor core). - - - - - - &cpuListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies the number of cores assigned to different functions - on a host. - - - - - - - - This parameter specifies the function that is being assigned - a different number of cores. The only functions currently allowed to be - assigned a different number of cores platform, vswitch and - shared. - platform function is for managing the cores - dedicated to the platform. - vswitch function is for managing the cores - dedicated to the vswitch. - shared function is for managing the cores - reserved for sharing by VMs using the hw:wrs:shared_vcpu flavor extra spec. - - - - - The number of cores on a socket assigned to this function. - - - - - - - - - - - - - - - - - - - &cpuListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Lists the memory information of all NUMA nodes of a host. - - - - - - - - The list of NUMA nodes (and their associated memory information) for this host. - - - &memoryListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the memory information about a specific NUMA node of a specific host. - - - - - - &memoryListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies the memory information about a specific NUMA node of a specific host.. - - - - - - - - If not null, the amount of reserved memory for platform in MiB - - - - - - If not null, the pending configured number of Virtual Machine - 1G huge pages. - - - - - If not null, the pending configured number of Virtual Machine - 2M huge pages. - - - - - - - - - - - - - - &memoryListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - Lists the sensorgroup information of a host. - - - - - - - - The list of associated sensorgroup information for this host. - - - &sensorgroupListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows the sensorgroup information of a specific sensorgroup. - - - - - - &sensorgroupListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies the sensorgroup information of a specific sensorgroup. - - - - - - - - - If True, suppresses any actions configured for the sensorgroup. - The sensorgroup remains monitored, but the actions configured will be suppressed. - - - - - - - Specifies the actions to take upon critical threshold event. Action selectable from actions_critical_choices. e.g. alarm, ignore, log, reset, powercycle. - - - - - - Specifies the actions to take upon major threshold event. Action selectable from actions_major_choices. e.g. alarm, ignore, log. - - - - - - Specifies the actions to take upon minor threshold event. Action selectable from actions_minor_choices. e.g. ignore, log, alarm. - - - - - - Specifies the audit interval, in time-units of seconds, for the sensors in the sensorgroup. - - - - - - - - - - - - - - - &sensorgroupListShowParameters; - - - - - - - - &postPutFaults; - - - - - Lists the sensor information of a host. - - - - - - - - The list of their associated sensor information for this host. - - - &sensorListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows the sensor information of a specific sensor. - - - - - - &sensorListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies the sensor information of a specific sensor. - - - - - - - - If True, suppresses any actions configured for the sensor. - When suppressed, the sensor remains monitored, but the actions configured will be suppressed. - - - - - - - - - - - - - - - &sensorListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - Lists all physical disks of a host. - - - - - - - - The list of physical disk entities. - - - &diskListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific physical disk. - - - - - - &diskListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies the disk. - - - - - - &diskModifyParameters; - - - - - - - - - - - - - - - - - - &postPutFaults; - - - - - - - - - - Lists all disk partitions of a host. - - - - - - - - The list of disk partition entities. - - - &partitionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific disk partition. - - - - - - &partitionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific disk partition. - - - - - - - - This parameter specifies a new size for the disk - partition. - - - - - - - - - - - - - - - &partitionListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a partition on a specific disk of a host. - - - - - - - - This parameter specifies the partition host uuid. - - - - - - This parameter specifies the partition type guid. - - - - - - This parameter specifies the partition disk uuid. - - - - - - This parameter specifies the size of the partition. - - - - - - - - - - - - - - - &partitionListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific disk partition. - This is supported just for user created, LVM Physical Volume, partition. - In order to delete a partition, it must be the last partition on the disk. - - - - - - - - - - - - - - - - - - Lists all Ceph storage functions of a host. - - - - - - - - The list of Ceph storage function entities. - - - &volumeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific Ceph storage function. - - - - - - &volumeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific Ceph storage function. - - - - - - - - This parameter specifies a new location for the stor's journal. - Needed only for "osd" functions. - - - - - - This parameter specifies a new size for the stor's journal. - Needed only for "osd" functions. - - - - - - - - - - - - - - - &volumeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a Ceph storage function on a specific host. - - PREREQUISITES: A 'ceph' storage backend must be configured in the - system. If multiple storage tiers are defined then a tier_uuid must be - specified. - - - - - - - - - This parameter specifies the Ceph storage function. - Valid values are (is): osd or journal. - - - - - - This parameter specifies the storage host uuid. - - - - - - This parameter specifies the storage disk uuid. - - - - - - This parameter specifies the uuid of the journal stor - on which the stor's journal will reside. Needed only - for "osd" functions. - - - - - - This parameter specifies the size of the journal. Needed - only for "osd" functions. - - - - - - - - - - - - - - - &volumeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific Ceph storage function. - This is supported just for journal type stors. The host must be locked. - In order to delete an osd stor, the host must be locked and deleted. - - - - - - - - - - - - - - - - - get storage backend summary. - - - - - - &profileShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Lists all LVM volume groups of a host. - - This will list all the LVM volume groups for a given host. - - - - - - - - - The list of volume group entities. - - - &volumegroupListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific LVM volume group. - - This will show detailed information about a specific LVM volume group. - - - - - - - &volumegroupListShowParameters; - &volumegroupListShowParametersExtra; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific volume group capability. - - - - - - - - A dictionary of key-value pairs prepresenting volume group parameters and values. - Valid nova-local parameters are: instances_lv_size_mib, - instance_backing, and concurrent_disk_operations. Valid - cinder-volumes parameters are: lvm_type - - - - - - - - - - - - - - &volumegroupListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates an LVM volume group on a specific host. - - This will create an LVM volume group on the specified host. This - functionality is not available on storage hosts. In addition, the - volume group name is limited to "nova-local" or "cinder-volumes". - - - - - - - - - This parameter specifies the volume group name. - Valid values are (is): nova-local - - - - - - This parameter specifies the compute host uuid. - - - - - - - - - - - - - - - &volumegroupListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific LVM volume group. - - In order to delete an LVM volume group, the host must be locked. All - physical volumes assigned to the volume group will also be deleted. - - - - - - - - - - - - - - - - - - Lists all LVM physical volumes of a host. - - This will list all the LVM physical volumes defined on the given host. - A physical volume can be a pre-defined disk partition or an entire - extra disk as supported by the Volume Group. - - - - - - - - - The list of physical volume entities. - - - &physicalvolumeListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows detailed information about a specific LVM physical volume. - - This will show detailed information about a specific LVM physical volume. - - - - - - - &physicalvolumeListShowParameters; - &physicalvolumeListShowParametersExtra; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Creates an LVM physical volume on a specific host. - - This will create an LVM physical volume on the specified host. This - functionality is disabled on storage nodes. A physical volume can - be a pre-defined disk partition or an entire extra disk as supported by - the Volume Group. In addition, the volume group name is limited to - "nova-local" or "cinder-volumes". - - - - - - - - - This parameter specifies the volume group uuid. - - - - - This parameter specifies the compute host uuid. - - - - - - This parameter specifies the storage disk uuid. - - - - - - - - - - - - - - - &physicalvolumeListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific LVM physical volume. - - In order to delete an LVM physical volume, the host must be locked. - - - - - - - - - - - - - - - - - - Lists all profiles. - - - - - - - - The list of profile entities. - - - &profileListParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific profile. - - - - - - &profileShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Creates a profile. - - - - - - - - The name for the new profile. - - - - - The type of profile to be created. - Valid values are: if, cpu or - stor. - - - - - The UUID of the Host to create the profile based on. - - - - - - - - - - - - - - &profileShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific profile. - - - - - - - - - - - - - - - - - - Lists all SNMP Communities. - - - - - - - - - The list of SNMP Communities. - - - &communityListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific SNMP Community. - - - - - - - &communityListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific SNMP Community. - - - - - - - - - This parameter specifies the new community string. - - - - - - - - - - - - - - &communityListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a SNMP Community. - - - - - - - - - This parameter specifies the community string to create. - - - - - - - - - - - - - - &communityListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific SNMP Community. - - - - - - - - - - - - - - - - - - Lists all SNMP Trap Destinations. - - - - - - - - - The list of SNMP Trap Destinations. - - - &trapdestListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows information about a specific SNMP Trap Destination. - - - - - - - &trapdestListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific SNMP Trap Destination. - - - - - - - - - This parameter specifies the IP address of a specific trap destination. - - - - - This parameter specifies the community of which the trap destination is a member. - - - - - - - - - - - - - - &trapdestListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Creates a SNMP Trap Destination. - - - - - - - - - This parameter specifies the IP address of a new trap destination. - - - - - This parameter specifies the community of which the trap destination is a member. - - - - - - - - - - - - - - &trapdestListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Deletes a specific SNMP Trap Destination. - - - - - - - - - - - - - - - - - - Shows attributes of the DNS object. - - - - - - &dnsListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies attributes of the DNS object. - The attributes of the DNS object that are configurable are: - - nameservers - - - - - - - - - This parameter specifies the list of Domain Name Servers (DNS). Comma separated list. - - - - - - - - - - - - - - &dnsListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Shows attributes of the NTP object. - - - - - - &ntpListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies attributes of the NTP object. - The attributes of the NTP object that are configurable are: - - ntpservers - - - - - - - - - This parameter specifies the list of Network Time Protocol (NTP) Servers. Comma separated list. - - - - - - - - - - - - - - &ntpListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Shows attributes of the External OAM object. - - - - - - &extoamListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies attributes of the External OAM object. - The attributes of the External OAM objects that are configurable are: - - oam_subnet - oam_gateway_ip - oam_floating_ip - oam_c0_ip - oam_c1_ip - - - - - - - - - This parameter specifies External -OAM IP Subnet. - - - - - This parameter specifies External -OAM Gateway IP Address. - - - - - This parameter specifies External -OAM Floating IP. - - - - - This parameter specifies External -OAM Controller-0 IP Address. - - - - - This parameter specifies External -OAM Controller-1 IP Address. - - - - - - - - - - - - - - &extoamListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - - Shows attributes of the infrastructure network IP subnet object. - - - - - - &infraListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add attributes of the infrastructure network IP subnet object. - The attributes of the infrastructure network IP subnet object that are configurable are: - - infra_subnet - infra_start - infra_end - infra_mtu - infra_vlan_id - - - - - - - - - This parameter specifies the infrastructure network IP subnet. - - - - - This parameter specifies the infrastructure network start IP address. - - - - - This parameter specifies the infrastructure network end IP address. - - - - - This parameter specifies the MTU of the infrastructure interface. - - - - - This parameter specifies the VLAN ID of the infrastructure interface. - - - - - - - - - - - - - - &infraListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies attributes of the infrastructure network IP subnet object. - The attributes of the infrastructure network IP subnet object that are configurable are: - - infra_start - infra_end - infra_mtu - infra_vlan_id - - - - - - - - - This parameter specifies the infrastructure network IP subnet. - - - - - - - - - - - - - - &infraListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Applies attributes of the infrastructure network IP subnet object. - - - - - - - - - - - - - - - - - - - - - - - - - Shows attributes of the DRBD configuration object. - - - - - - &drbdsyncListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies attributes of the DRBD configuration object. - The attributes of the DRBD configuration object that are configurable are: - - link_util - num_parallel - rtt_ms - - - - - - - - - This parameter specifies the DRBD engineered link utilization percent during resync. - - - - - This parameter specifies the DRBD number of parallel devices to resync. - - - - - This parameter specifies the DRBD replication nodes round-trip-time milliseconds. - - - - - - - - - - - - - - - &drbdsyncListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - List the PCI devices of a host. - - - - - - - - The list of PCI devices of a host. - - - &deviceListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific PCI device. - - - - - - &deviceListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies a specific PCI device. - - - - - - - - The name for the device. - - - - - The status of this device; - i.e. True, False. - - - - - - - - - - - - - - - - URIs to the PCI devices of this host. - - - - &deviceListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - List the service parameters. - - - - - - - - The list of service parameters. - - - &serviceParameterListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the Service parameter - object. - - - - - - &serviceParameterListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Creates parameters for a service. - - - - - - - - - This parameter specifies the name of the service. - Valid values are (is): identity - - - - - - This parameter specifies the section of the - configuration file for the service. - - - - - - - - - - - - - - - &serviceParameterListShowParameters; - - - - - - - - &postPutFaults; - - - - - Applies the service parameters. - - - - - - - - - This parameter specifies the name of the service. - Valid values are (is): identity - - - - - - - - - - - - - - - - - - - - - - Modifies the value of the Service - parameter object. - - - - - - - - The name for the service parameter. - - - - - The value of the service parameter. - - - - - - - - - - - - - - - - URIs to the service parameters. - - - &serviceParameterListShowParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a service parameter. - - - - - - - - - - - - - - - - - List the LLDP agents of a host. - - - - - - - - The list of LLDP agents of a host. - - - &lldpAgentListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific LLDP agent. - - - - - - &lldpAgentListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List the LLDP neighbors of a host. - - - - - - - - The list of LLDP neighbors of a host. - - - &lldpNeighborListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific LLDP neighbor. - - - - - - &lldpNeighborListShowParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List all services running. - - - - - - - - The list of services. - - - &serviceListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific service. - - - - - - &serviceListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Modifies the configuration of a service. - - - - - - - - Service enabled. - - - - - - - - - - - - - - - - Service enabled. - - - - - Service name. - - - - - - - - - - &postPutFaults; - - - - - - - - - List all service nodes in the system. - - - - - - - - The list of service nodes. - - - &serviceNodeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific service node. - - - - - - &serviceNodeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List all service groups in the system. - - - - - - - - The list of service groups. - - - &serviceGroupListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Shows the attributes of a specific service group. - - - - - - &serviceGroupListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List the SDN controllers. - - - - - - - - The list of SDN controllers. - - - &sdnControllerCommonParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the SDN controller. - - - - - - &sdnControllerCommonParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Adds an SDN controller. - - - - - - - &sdnControllerCommonParameters; - - - - - - - - - - - - &sdnControllerCommonParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the attributes of the SDN controller. - - - - - - &sdnControllerCommonParameters; - - - - - - - - - - - - &sdnControllerCommonParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes an SDN controller. - - - - - - - - - - - - - - - - - Show configuration for remote logging. - - - - - - - - The list of remotelogging configuration. - - - &remoteLoggingParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies the configuration of the remote logging of this system. - - - - - - - - IP Address of remote log server. - - - - - Remote log server enabled. - - - - - Remote log server transport protocol. - - - - - Remote log server port. - - - - - - - - - - - - - - &remoteLoggingParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Shows detailed information about a specific address pool. - - - - - - &addrPoolCommonParameters; - &addrPoolListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows detailed information about all address pools. - - - - - - &addrPoolCommonParameters; - &addrPoolListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Deletes an address pool. - - - - - - - - - - - - - Adds an address pool. - - - - - - - &addrPoolCommonParameters; - - - - - - - - - - - - &addrPoolCommonParameters; &addrPoolListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies an address pool. - - - - - - - - The name (or network type) of the address pool resource. - - - - - A string representing the IP address allocation scheme; random to allocate in random order, or sequential to allocate in sequential order. - - - - - A python list, formatted as a JSON string, representing a series of start-end pairs which define the allocatable ranges of IP addresses in the pool. - - - - - - - - - - - - - - &addrPoolCommonParameters; - &addrPoolListShowParameters; - - - - - - - - &postPutFaults; - - - - - Shows detailed information about a specific address. - - - - - - &addressCommonParameters; - &addressListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows detailed information about all addresses. - - - - - - &addressCommonParameters; - &addressListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Deletes an address. - - - - - - - - - - - - - Adds an address. - - - - - - - &addressCommonParameters; - - - - - - - - - - - - &addressCommonParameters; &addressListShowParameters; - - - - - - - - &postPutFaults; - - - - - Shows detailed information about a specific route. - - - - - - &routeCommonParameters; - &routeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows detailed information about all routes. - - - - - - &routeCommonParameters; - &routeListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Deletes a route. - - - - - - - - - - - - - Adds a route. - - - - - - - &routeCommonParameters; - - - - - - - - - - - - &routeCommonParameters; &routeListShowParameters; - - - - - - - - &postPutFaults; - - - - - - Shows detailed information about a specific network. - - - - - - &networkListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows detailed information about all networks. - - - - - - &networkListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List the storage backends. - - - - - - &storageBackendListParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - List the storage backends usage. - - - - - - &storageBackendUsageParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List LVM storage backends. - - - - - - &storageBackendListParameters; - &storageLvmParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the Lvm storage backend. - - - - - - &storageBackendListParameters; - &storageLvmParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add a Lvm storage backend. - - - - - - - - This parameter specifies the type of the backend. - Valid values are (is): lvm - - - - - - This parameter specifies the name of the backend. - - - - &storageBackendModifyParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageLvmParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the Lvm storage backend. - - LVM backend only supports cinder service and is mandatory. Also, there is - currently no modifiable parameter in the capabilities field. Any custom - defined parameter will remain unused. - - - - - - - &storageBackendModifyParameters; - - - - - - - - - - - - - - Returns back parameter in request. - - - &storageBackendListParameters; - &storageLvmParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes an LVM storage backend. - - - - - - - - - - - - - - - - List Ceph storage backends. - - - - - - &storageBackendListParameters; - &storageCephParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the Ceph storage backend. - - - - - - &storageBackendListParameters; - &storageCephParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add a Ceph storage backend. - - - - - - - - - This parameter specifies the type of the backend. - Valid values are (is): ceph - - - - - - This parameter specifies the name of the backend. - - - - &storageBackendModifyParameters; - &storageCephParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageCephParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the Ceph storage backend. - - - - - - &storageBackendModifyParameters; - &storageCephParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageCephParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a ceph storage backend. - - - - - - - - - - - - - - - - List Ceph External storage backends. - - - - - - &storageBackendListParameters; - &storageCephExternalParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the Ceph External storage backend. - - - - - - &storageBackendListParameters; - &storageCephExternalParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add a Ceph External storage backend. - - - - - - - - - This parameter specifies the type of the backend. - Valid values are (is): ceph-external - - - - - - This parameter specifies the name of the backend. - - - - &storageBackendModifyParameters; - &storageCephExternalParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageCephExternalParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the Ceph External storage backend. - - - - - - &storageBackendModifyParameters; - &storageCephExternalParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageCephExternalParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a ceph External storage backend. - - - - - - - - - - - - - - - - - List file storage backends. - - - - - - &storageBackendListParameters; - &storageFileParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the file storage backend. - - - - - - &storageBackendListParameters; - &storageFileParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add a File storage backend. - - - - - - - - - This parameter specifies the type of the backend. - Valid values are (is): file - - - - - - This parameter specifies the name of the backend. - - - - &storageBackendModifyParameters; - &storageFileParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageFileParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the File storage backend. - - - - - - &storageBackendModifyParameters; - &storageFileParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageFileParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a file storage backend. - - - - - - - - - - - - - - - - List external storage backends. - - - - - - &storageBackendListParameters; - &storageExternalParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of the external storage backend. - - - - - - &storageBackendListParameters; - &storageExternalParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add an External storage backend. - - - - - - - - - This parameter specifies the type of the backend. - Valid values are (is): external - - - - - - This parameter specifies the name of the backend. - - - - &storageBackendModifyParameters; - &storageExternalParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageExternalParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the External storage backend. - - - - - - &storageBackendModifyParameters; - &storageExternalParameters; - - - - - - - - - - - - &storageBackendListParameters; - &storageExternalParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes an external storage backend. - - - - - - - - - - - - - - - - List the storage tiers. - - - - - - &storageTierListParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of a storage tier. - - - - - - &storageTierListParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Add a storage tier. - - - - - - - - - This parameter specifies the unique name of the storage tier. - - - &storageTierModifyParameters; - - - - - - - - - - - - &storageTierListParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies the storage tier. - - - - - - &storageTierModifyParameters; - - - - - - - - - - - - &storageTierListParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Deletes a storage tier. - - - - - - - - - - - - - - - - Shows attributes of a Controller filesystem. - - - - - - &controllerFsParametersFilesystems; - &controllerFsParametersExtra; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - List the Controller filesystems. - - - - - - &controllerFsParametersFilesystems; - &controllerFsParametersExtra; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies a Controller filesystem. - - - - - - &controllerFsModifyParametersFilesystems; - - - - - - - - - - - - &controllerFsParametersFilesystems; - &controllerFsParametersExtra; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Modifies Controller Filesystem(s). - - - - - - &controllerFsModifyParametersFilesystems; - - - - - - - - - - - - - - - - - - &postPutFaults; - - - - - - - - - List Ceph monitors. - - - - - - &cephMonParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows attributes of a Ceph monitor. - - - - - - &cephMonParameters; - &cephMonParametersExtra; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Modifies a Ceph monitor. - - - - - - &cephMonParameters; - - - - - - - - - - - - &cephMonParameters; - &cephMonParametersExtra; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - - - - - Shows the health status of the system. - - - - - - - - - &commonFaults; &getFaults; - - - - - Shows the health status of the system with requirements for an upgrade. - - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - List of loads installed on the system. - - - - - - &loadParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Shows the attributes of a load. - - - - - - &loadParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Deletes a load. - - - - - - - - - - - - - Import a load. - - - - - - - - The full system path of the iso. - - - - - The full system path of the detached signature for the iso. - - - - - - - - - - - - - - &loadParameters; - - - - - - - - &commonFaults; &postPutFaults; - - - - - - - - - Shows the status of the upgrade - - - - - - &upgradeListParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Completes the upgrade. This can be done after the upgrade is activated or aborted. - - - - - - - &upgradeParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; - - - - - Activate or abort the upgrade. - - - - - - - - Change the state of the upgrade: - Valid values are: aborting, - or activation-requested. - - - - - - - - - - - - - - - &upgradeParameters; - &commonListShowParameters; - - - - - - - - &postPutFaults; - - - - - Starts the upgrade. - - - - - - - - Set to true to ignore minor and warning alarms. - - - - - - - - - - - - - - &upgradeParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &postPutFaults; - - - - - Upgrades a host. - - - - - - - - Set to true to perform the action even if the host is offline. - - - - - - - - - - - - - - &hostListShowParameters; - - - - - - - - &commonFaults; &postPutFaults; - - - - - Downgrades a host. - - - - - - - - Set to true to perform the action even if the host is offline. - - - - - - - - - - - - - - &hostListShowParameters; - - - - - - - - &commonFaults; &postPutFaults; - - - - - - - - - Install System Certificate. - Accepts a PEM file containing the X509 certificate. - - - - For security reasons, the original certificate, - containing the private key, will be removed, - once the private key is processed. - - - - - - - - - - - The content of a file. - e.g. if using curl, this would be specified as: - curl -F name=@full_path_of_filename - - - - - &certconfigCommonParameters; - - - - - - - - - &commonFaults; &postPutFaults; - - - - - Shows attributes of the Certificate configuration, including - additional details if available for that certificate mode - - - - - - - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - List installed System Certificates. - - - - - - &commonListShowParameters; - - - - - - - &commonFaults; &getFaults; - - - - - - - - - Shows custom firewall rules. - - - - - - &customFirewallRulesParameters; - &commonListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Install custom firewall rules. - Accepts a file containing the custom OAM firewall rules - compatible with the Linux Netfilter framework. - - - - - - - - - The content of a file. - e.g. if using curl, this would be specified as: - curl -F name=@full_path_of_filename - - - - - - - - - - - - &commonFaults; &postPutFaults; - - - - - - - - - Install license file. - - - - - - - - The content of a file. - e.g. if using curl, this would be specified as: - curl -F name=@full_path_of_filename - - - - - - - - - - - - - &commonFaults; &postPutFaults; - - - - - List license information. - - - - - - &licenseListParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - - - - - Assign label to a host. - - - - - - - - This parameter specifies the label key value pairs. - - - - - - - - - - - - - - - - - &commonFaults; &postPutFaults; - - - - - List host label. - - - - - - &labelListParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - Remove label from a host. - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-snapshot-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-snapshot-request.json deleted file mode 100644 index c2747462f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-snapshot-request.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "wrs-snapshot:os-export_snapshot" : { - "volume_type" : null, - "updated_at" : "2015-03-03T15:32:31.386661", - "status" : "exporting", - "volume_size" : 1, - "id" : "9ad36199-c5b3-44bf-9273-c298ab7a0a2b", - "display_description" : null - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-volume-request.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-volume-request.json deleted file mode 100644 index 2e700b17f..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/action-volume-request.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - 'wrs-volume:os-volume_export' : { - 'volume_type' : null, - 'updated_at' : '2015-02-27T14:04:35.201969', - 'status' : 'exporting', - 'id' : '27080551-9d88-4cf0-aa85-c1392dbf38f4', - 'display_description' : null, - 'size' : 1 - } -} -or -{ - 'wrs-volume:os-volume_import' : { - 'volume_type' : null, - 'updated_at' : '2015-02-27T15:03:54.045796', - 'status' : 'importing', - 'id' : '27080551-9d88-4cf0-aa85-c1392dbf38f4', - 'display_description' : null, - 'size' : 1 - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_get-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_get-response.json deleted file mode 100644 index c76e8d894..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_get-response.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "extension" : { - "namespace" : "http://docs.windriver.com/volume/ext/wrs-volume/api/v1.0", - "name" : "WrsVolumeExport", - "updated" : "2014-08-11T00:00:00+00:00", - "description" : "Enable volume export/import", - "alias" : "wrs-volume", - "links" : [] - } -} - -OR - -{ - "extension" : { - "namespace" : "http://docs.windriver.com/volume/ext/wrs-snapshot/api/v1.0", - "name" : "WrsSnapshotExportAction", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "Enable snapshot export to file", - "alias" : "wrs-snapshot", - "links" : [] - } -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_list-response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_list-response.json deleted file mode 100644 index 6a0ecf9ad..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/extension_list-response.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "extensions" : [ - ... - { - "namespace" : "http://docs.windriver.com/volume/ext/wrs-snapshot/api/v1.0", - "name" : "WrsSnapshotExportAction", - "updated" : "2014-08-16T00:00:00+00:00", - "description" : "Enable snapshot export to file", - "alias" : "wrs-snapshot", - "links" : [] - }, - { - "namespace" : "http://docs.windriver.com/volume/ext/wrs-volume/api/v1.0", - "name" : "WrsVolumeExport", - "updated" : "2014-08-11T00:00:00+00:00", - "description" : "Enable volume export/import", - "alias" : "wrs-volume", - "links" : [] - }, - ... - ] -} - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_list_detail_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_list_detail_response.json deleted file mode 100644 index 00f88a45b..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_list_detail_response.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "snapshots" : [ - { - "volume_id" : "f15dcbfb-8b41-4fff-adb8-77a4162a318b", - "status" : "available", - "display_description" : null, - "display_name" : null, - "size" : 1, - "created_at" : "2015-02-27T13:19:02.380453", - "os-extended-snapshot-attributes:project_id" : "e0741109067649a8899936e9fefda95b", - "wrs-snapshot:backup_status" : "Export completed at 2015-02-27 13:19:48.914344", - "id" : "7b220cb7-212f-411e-a8cd-41e6bdbac724", - "metadata" : {}, - "os-extended-snapshot-attributes:progress" : "100%" - }, - { - "volume_id" : "2c4f094b-f6d8-4ff6-800e-e5998cb4d6fa", - "status" : "available", - "display_description" : null, - "display_name" : null, - "size" : 1, - "created_at" : "2015-02-27T20:56:32.033427", - "os-extended-snapshot-attributes:project_id" : "e0741109067649a8899936e9fefda95b", - "wrs-snapshot:backup_status" : "Export completed at 2015-02-27 20:57:29.279574", - "id" : "0aa45e0c-74ea-433e-b8f3-0dc778d3972b", - "metadata" : {}, - "os-extended-snapshot-attributes:progress" : "100%" - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_show_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_show_response.json deleted file mode 100644 index 3b3e53aea..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/snapshot_show_response.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "snapshot" : { - "volume_id" : "2c4f094b-f6d8-4ff6-800e-e5998cb4d6fa", - "status" : "available", - "display_description" : null, - "display_name" : null, - "size" : 1, - "created_at" : "2015-02-27T20:56:32.033427", - "os-extended-snapshot-attributes:project_id" : "e0741109067649a8899936e9fefda95b", - "wrs-snapshot:backup_status" : "Export completed at 2015-02-27 20:57:29.279574", - "id" : "0aa45e0c-74ea-433e-b8f3-0dc778d3972b", - "metadata" : {}, - "os-extended-snapshot-attributes:progress" : "100%" - } -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_list_detail_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_list_detail_response.json deleted file mode 100644 index 990b3a6e1..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_list_detail_response.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "volumes" : [ - { - "wrs-volume:backup_status" : "Export completed at 2015-02-27 16:35:53.545339", - "volume_type" : "None", - "status" : "available", - "size" : 1, - "created_at" : "2015-02-27T16:26:08.164607", - "id" : "b7db512f-463e-4720-8fbd-154c0f2bc2ae", - "metadata" : {}, - "attachments" : [], - "os-volume-replication:driver_data" : null, - "os-vol-mig-status-attr:migstat" : null, - "display_name" : null, - "availability_zone" : "nova", - "display_description" : null, - "encrypted" : false, - "os-vol-mig-status-attr:name_id" : null, - "os-vol-host-attr:host" : "controller@lvm#lvm", - "os-volume-replication:extended_status" : null, - "snapshot_id" : null, - "os-vol-tenant-attr:tenant_id" : "e0741109067649a8899936e9fefda95b", - "bootable" : "false", - "source_volid" : null - }, - { - "wrs-volume:backup_status" : "Import completed at 2015-02-27 15:04:29.135579", - "volume_type" : "None", - "status" : "available", - "size" : 1, - "created_at" : "2015-02-27T14:04:34.763953", - "id" : "27080551-9d88-4cf0-aa85-c1392dbf38f4", - "metadata" : {}, - "attachments" : [], - "os-volume-replication:driver_data" : null, - "os-vol-mig-status-attr:migstat" : null, - "display_name" : null, - "availability_zone" : "nova", - "display_description" : null, - "encrypted" : false, - "os-vol-mig-status-attr:name_id" : null, - "os-vol-host-attr:host" : "controller@lvm#lvm", - "os-volume-replication:extended_status" : null, - "snapshot_id" : null, - "os-vol-tenant-attr:tenant_id" : "e0741109067649a8899936e9fefda95b", - "bootable" : "false", - "source_volid" : null - }, - { - "wrs-volume:backup_status" : "Snapshot export completed at 2015-02-27 20:57:29.323714", - "volume_type" : "None", - "status" : "available", - "size" : 1, - "created_at" : "2015-02-27T13:44:55.317995", - "id" : "2c4f094b-f6d8-4ff6-800e-e5998cb4d6fa", - "metadata" : {}, - "attachments" : [], - "os-volume-replication:driver_data" : null, - "os-vol-mig-status-attr:migstat" : null, - "display_name" : null, - "availability_zone" : "nova", - "display_description" : null, - "encrypted" : false, - "os-vol-mig-status-attr:name_id" : null, - "os-vol-host-attr:host" : "controller@lvm#lvm", - "os-volume-replication:extended_status" : null, - "snapshot_id" : null, - "os-vol-tenant-attr:tenant_id" : "e0741109067649a8899936e9fefda95b", - "bootable" : "false", - "source_volid" : null - } - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_show_response.json b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_show_response.json deleted file mode 100644 index fd0869be8..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/api_samples/volume-v2-cgcs-ext/volume_show_response.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "volumes" : [ - { - "wrs-volume:backup_status" : "Import completed at 2015-02-27 15:04:29.135579", - "volume_type" : "None", - "status" : "available", - "size" : 1, - "created_at" : "2015-02-27T14:04:34.763953", - "id" : "27080551-9d88-4cf0-aa85-c1392dbf38f4", - "metadata" : {}, - "attachments" : [], - "os-volume-replication:driver_data" : null, - "os-vol-mig-status-attr:migstat" : null, - "display_name" : null, - "availability_zone" : "nova", - "display_description" : null, - "encrypted" : false, - "os-vol-mig-status-attr:name_id" : null, - "os-vol-host-attr:host" : "controller@lvm#lvm", - "os-volume-replication:extended_status" : null, - "snapshot_id" : null, - "os-vol-tenant-attr:tenant_id" : "e0741109067649a8899936e9fefda95b", - "bootable" : "false", - "source_volid" : null - }, - ] -} diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/cgcs-ext/volume-v2-cgcs-ext.wadl b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/cgcs-ext/volume-v2-cgcs-ext.wadl deleted file mode 100644 index 469e33fff..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/cgcs-ext/volume-v2-cgcs-ext.wadl +++ /dev/null @@ -1,507 +0,0 @@ - - - -%common;]> - - - - - - - - - - - - - - - - The ID for the tenant or - account in a multi-tenancy - cloud. - - - - - - - - - The alias for the extension - to list. - - - - - - - - - - - - - - - - - The ID for the volume - to list. - - - - - - - - - - - - - - - - - - - The ID for the snapshot - to list. - - - - - - - - - - - - - - - - Details for a version. - - - - - - - - - - - Lists all extensions. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Gets information about a specified extension. - - - - - - - &extensionListShowParameters; - - - - - - - - &commonFaults; &getFaults; - - - - - - Get information about system volumes. - Preconditions - - The specified volume must exist in all case. - - - - - - - - - - - - - - - - Indicates backup status. - - - - - - - - - - - - - - Get information about a specified volume. - Preconditions - - The specified volume must exist in all case. - - - - - - - - - - - - - - - - Indicates backup status. - - - - - - - - - - - - - - - Executes the specified action or command - on the specified volume. - Preconditions - - The specified volume must exist in all case. - - - - - - - - - Export volume to a file - - - - - - Import a volume from a file - - - file_name: "VolumeExportName.tgz". - - - - - - - - - - - - Indicates the volume type. - - - - - Indicates when the action was performed. - - - - - Indicates the state of the export or import action. - - - - - Indicates the volume UUID. - - - - - Volume descrition if any. - - - - - Indicates the volume size in Gbyte. - - - - - - - - - - - - - - Get information about system volume snapshots. - Preconditions - - The specified volume snapshot must exist in all case. - - - - - - - - - - - - - - - - Indicates backup status. - - - - - - - - - - - - - - Get information of a specific volume snapshot. - Preconditions - - The specified volume snapshot must exist in all case. - - - - - - - - - - - - - - - - Indicates backup status. - - - - - - - - - - - - - - - Executes the specified action or command - on the specified volume snapshot. - Preconditions - - The specified volume snapshot must exist in all case. - - - - sn - - - - - Export volume snapshot to a file - - - - - - - - - - - - Indicates the volume type. - - - - - Indicates when the action was performed. - - - - - Indicates the state of the volume snapshot export action. - - - - - Indicates the volume UUID. - - - - - Volume descrition if any. - - - - - Indicates the volume size in Gbyte. - - - - - - - - - - - diff --git a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/common.ent b/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/common.ent deleted file mode 100644 index 5641d5a67..000000000 --- a/restapi-doc/restapi-doc/api-ref/src/wadls/volume-api/v2/common.ent +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - Indicates namespace of the extension. - - - - - Indicates name of the extension. - - - - - Indicates updated time of the extension. - - - - - Indicates description of the extension. - - - - - Indicates alias of the extension. - - - - - A list of links for the extension. - - - '> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '> - - - - - '> - - - - - - - - - '> - - - - - '> - - - - - - '> - - - - - - '> - - - - - - - - - - Indicates name of the volume. - - - - - Indicates whether or not the volume is compressed. - - - '> - - - - - - - Indicates name of the snapshot. - - - - - Indicates whether or not the snapshot is compressed. - - - '> - - - - GET'> - PUT'> - POST'> - DELETE'> diff --git a/restapi-doc/restapi-doc/pom.xml b/restapi-doc/restapi-doc/pom.xml deleted file mode 100644 index cb914836d..000000000 --- a/restapi-doc/restapi-doc/pom.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - 4.0.0 - org.openstack.docs - parent-pom - 1.0.0-SNAPSHOT - pom - - api-ref - api-ref-guides - - - - Rackspace Research Repositories - - true - - - - rackspace-research - Rackspace Research Repository - http://maven.research.rackspacecloud.com/content/groups/public/ - - - - - rackspace-research - Rackspace Research Repository - http://maven.research.rackspacecloud.com/content/groups/public/ - - - - - - - - com.rackspace.cloud.api - clouddocs-maven-plugin - 2.1.2 - - - - diff --git a/restapi-doc/restapi-doc/rest-api-usage-example.pdf b/restapi-doc/restapi-doc/rest-api-usage-example.pdf deleted file mode 100644 index 4cce1aa1e..000000000 Binary files a/restapi-doc/restapi-doc/rest-api-usage-example.pdf and /dev/null differ diff --git a/restapi-doc/restapi-doc/rest-api-usage-example.pptx b/restapi-doc/restapi-doc/rest-api-usage-example.pptx deleted file mode 100644 index 2119dc143..000000000 Binary files a/restapi-doc/restapi-doc/rest-api-usage-example.pptx and /dev/null differ