.. This work is licensed under a Creative Commons Attribution 4.0 International License. .. http://creativecommons.org/licenses/by/4.0 .. Copyright 2017-18 Huawei Technologies Co., Ltd. .. toctree:: :maxdepth: 2 .. _cli_cmd_help: open-cli ========================== [1] basic-login ----------------------------------------------- usage: oclip basic-login Provides HTTP basic authorization support. Product: open-cli Service: basic-auth Author: Kanagaraj Manickam kanagaraj.manickam@huawei.com Options:: [-m | --host-url] [-C | --no-catalog] [-f | --format] [-h | --help] [-V | --verify] [-t | --no-title] [-d | --debug] [-v | --version] [-s | --long] [-D | --context] [-u | --host-username] [-p | --host-password] where:: -m | --host-url host url in http(s). It is of type URL. By default, it is read from environment variable OPEN_CLI_HOST_URL. -C | --no-catalog Whether to use given host-url directly or discover it from catalog, it will override the service->mode. It is of type BOOL. It is optional. -f | --format Output formats, supported formats such as table, csv, json, yaml. It is of type STRING. -h | --help print help message. It is of type BOOL. -V | --verify Helps to verify the command using samples provides under open-cli-samples directory. By default, it goes with mock.To enable the verification of samples in real time, set DISABLE_MOCKING=true in the context parameter. It is of type BOOL. It is optional. -t | --no-title whether to print title or not. It is of type BOOL. -d | --debug Enable debug output. It is of type BOOL. -v | --version print service version. It is of type BOOL. -s | --long whether to print all attributes or only short attributes. It is of type BOOL. -D | --context command context. It is of type MAP. It is optional. -u | --host-username Host user name. It is of type STRING. By default, it is read from environment variable OPEN_CLI_HOST_USERNAME. -p | --host-password Host user password. It is of type STRING. By default, it is read from environment variable OPEN_CLI_HOST_PASSWORD. Secured. Results:: Authorization Authorization and is of type STRING. Error:: On error, it prints :::: [2] basic-logout ----------------------------------------------- usage: oclip basic-logout Provides HTTP basic authorization support. As part of logout, it invalidates authorization key generated while login. Product: open-cli Service: basic-auth Author: Kanagaraj Manickam kanagaraj.manickam@huawei.com Options:: [-m | --host-url] [-C | --no-catalog] [-f | --format] [-h | --help] [-V | --verify] [-t | --no-title] [-d | --debug] [-v | --version] [-s | --long] [-D | --context] where:: -m | --host-url host url in http(s). It is of type URL. By default, it is read from environment variable OPEN_CLI_HOST_URL. -C | --no-catalog Whether to use given host-url directly or discover it from catalog, it will override the service->mode. It is of type BOOL. It is optional. -f | --format Output formats, supported formats such as table, csv, json, yaml. It is of type STRING. -h | --help print help message. It is of type BOOL. -V | --verify Helps to verify the command using samples provides under open-cli-samples directory. By default, it goes with mock.To enable the verification of samples in real time, set DISABLE_MOCKING=true in the context parameter. It is of type BOOL. It is optional. -t | --no-title whether to print title or not. It is of type BOOL. -d | --debug Enable debug output. It is of type BOOL. -v | --version print service version. It is of type BOOL. -s | --long whether to print all attributes or only short attributes. It is of type BOOL. -D | --context command context. It is of type MAP. It is optional. Error:: On error, it prints :::: [3] catalog ----------------------------------------------- usage: oclip catalog Provides catalog discovery support to find the base api path for given service from product's catalog service. If any product wants to support catalog, it could derive from this command. Currently ONAP uses it and creates derived command by using ONAP MSB service. Product: open-cli Service: catalog Author: Kanagaraj Manickam kanagaraj.manickam@huawei.com Options:: [-m | --host-url] [-C | --no-catalog] [-l | --catalog-service-name] [-f | --format] [-h | --help] [-V | --verify] [-t | --no-title] [-d | --debug] [-v | --version] [-s | --long] [-D | --context] [-i | --catalog-service-version] where:: -m | --host-url host url in http(s). It is of type URL. By default, it is read from environment variable OPEN_CLI_HOST_URL. -C | --no-catalog Whether to use given host-url directly or discover it from catalog, it will override the service->mode. It is of type BOOL. It is optional. -l | --catalog-service-name service name registered in catalog service. It is of type STRING. By default, it is . -f | --format Output formats, supported formats such as table, csv, json, yaml. It is of type STRING. -h | --help print help message. It is of type BOOL. -V | --verify Helps to verify the command usin
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~  Copyright © 2019 Bell Canada
  ~
  ~  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.
  -->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
        <artifactId>modules-inbounds</artifactId>
        <version>1.7.0-SNAPSHOT</version>
    </parent>

    <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
    <artifactId>configs-api</artifactId>
    <packaging>jar</packaging>

    <name>MS Blueprints Processor Modules - Inbounds - Configurations API</name>

    <dependencies>
        <dependency>
            <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
            <artifactId>config-snapshots</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
            <artifactId>blueprint-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.onap.ccsdk.cds.error.catalog</groupId>
            <artifactId>error-catalog-services</artifactId>
        </dependency>
    </dependencies>
</project>
rint service version. It is of type BOOL. -l | --schema-location Schema file location. It is of type URL. By default, it is . -i | --internal-schema Validate existing schema file. It is of type BOOL. Results:: error Schema validation error and is of type STRING. Error:: On error, it prints :::: [13] service-list ----------------------------------------------- usage: oclip service-list List the services in given product registered in OCLIP Product: open-cli Service: product Author: Kanagaraj Manickam kanagaraj.manickam@huawei.com Options:: [-l | --product] [-D | --context] [-s | --long] [-h | --help] [-f | --format] [-t | --no-title] [-d | --debug] [-v | --version] where:: -l | --product For a given product version. It is of type STRING. By default, it is . -D | --context command context. It is of type MAP. It is optional. -s | --long whether to print all attributes or only short attributes. It is of type BOOL. -h | --help print help message. It is of type BOOL. -f | --format Output formats, supported formats such as table, csv, json, yaml. It is of type STRING. -t | --no-title whether to print title or not. It is of type BOOL. -d | --debug Enable debug output. It is of type BOOL. -v | --version print service version. It is of type BOOL. Results:: service Service name and is of type STRING. description Product description and is of type STRING. Error:: On error, it prints ::::