diff options
author | vidhyasree <sn141y@att.com> | 2018-02-21 11:19:33 -0500 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-02-22 18:04:35 +0000 |
commit | 6cf060d13e4a06894db3050ed23e4e7667fb021f (patch) | |
tree | 078a7e8980cf73c23402f0637a93ab6ae2d90c1c /appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang | |
parent | 446bae37c2f6dabe842cb2b6585a17bcec327a17 (diff) |
Task to add ConfigScaleOut to LCM API, Yang Model.
A new action ConfigScaleOut is added to LCM API and Yang model.
Removed old action item configscaleout supporting VM action level
which is no longer needed.
Issue-ID: APPC-479
Change-Id: Ie5452f4d5625fc3be6b66c0f403d12baa64fa096
Signed-off-by: vidhyasree <sn141y@att.com>
Diffstat (limited to 'appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang')
-rw-r--r-- | appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang b/appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang index 7c6df09f2..5ff992a08 100644 --- a/appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang +++ b/appc-provider/appc-provider-model/src/main/yang/appc-provider-lcm.yang @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP : APPC * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= @@ -774,30 +774,30 @@ module appc-provider-lcm { } } - rpc config-scaleout { - description "An operation to scaleout the configurations of a virtual network - function (or VM)"; - input { - uses common-header; - leaf action { - type action; - mandatory true; - } - uses action-identifiers; - leaf payload { - type payload; - mandatory false; + rpc config-scale-out { + description "An operation to Modify the configuration or other action to support + a ConfigScaleOut of a VNF."; + input { + uses common-header; + leaf action { + type action; + mandatory true; + } + uses action-identifiers; + leaf payload { + type payload; + mandatory false; + } } - } - output { - uses common-header; - uses status; - leaf payload { - type payload; - mandatory false; + output { + uses common-header; + uses status; + leaf payload { + type payload; + mandatory false; + } } } - } rpc config-restore { description "An operation to restore the configurations of a virtual network |