aboutsummaryrefslogtreecommitdiffstats
path: root/products/onap-dublin/features/aai/src/main/resources/open-cli-schema
diff options
context:
space:
mode:
authorItohan Ukponmwan <itohan.ukponmwan@intel.com>2019-03-13 22:31:13 +0000
committerItohan Ukponmwan <itohan.ukponmwan@intel.com>2019-03-13 22:31:13 +0000
commit143b0ebc6b52cebc4955f227553b2abe83c9cd84 (patch)
tree11ae425d14c5aa521d29ba432daa8b5d8979c2f5 /products/onap-dublin/features/aai/src/main/resources/open-cli-schema
parent65d9d65c6e3bf9f4f5590a3ba3d9234b63c04596 (diff)
Subscription schema files for onap-dublin CLI
-Updated subscription-create to use cloud-parameters -New command to add newcloud to already existing subscription Change-Id: I25abaae4286bf67bdcf074c2b7552e654c3acb0c Issue-ID: CLI-134 CLI-153 Signed-off-by: Itohan Ukponmwan <itohan.ukponmwan@intel.com>
Diffstat (limited to 'products/onap-dublin/features/aai/src/main/resources/open-cli-schema')
-rw-r--r--products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-cloud-add-schema-dublin.yaml100
-rw-r--r--products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-create-schema-dublin.yaml54
2 files changed, 145 insertions, 9 deletions
diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-cloud-add-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-cloud-add-schema-dublin.yaml
new file mode 100644
index 00000000..69ad5943
--- /dev/null
+++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-cloud-add-schema-dublin.yaml
@@ -0,0 +1,100 @@
+# Copyright © Intel Corporation 2019
+#
+# 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.
+
+open_cli_schema_version: 1.0
+name: subscription-cloud-add
+description: Add a new cloud region to a customer subscription
+
+info:
+ product: onap-dublin
+ service: aai
+ author: Intel ONAP HPA integration team (itohan.ukponmwan@intel.com)
+
+parameters:
+ - name: customer-name
+ description: Onap customer name
+ type: string
+ short_option: x
+ long_option: customer-name
+ is_optional: false
+ - name: cloud-owner
+ description: Onap cloud owner name
+ type: string
+ short_option: z
+ long_option: cloud-owner
+ is_optional: false
+ - name: cloud-region
+ description: Onap cloud region
+ type: string
+ short_option: r
+ long_option: cloud-region
+ is_optional: false
+ - name: cloud-tenant-id
+ description: Onap cloud tenant id
+ type: string
+ short_option: c
+ long_option: cloud-tenant-id
+ is_optional: false
+ - name: service-type
+ description: Onap service type
+ type: string
+ short_option: e
+ long_option: service-type
+ is_optional: false
+ - name: tenant-name
+ description: name of tenant to use in the cloud region
+ type: string
+ short_option: y
+ long_option: tenant-name
+ is_optional: false
+
+http:
+ service:
+ auth: basic
+ mode: direct
+ request:
+ uri: /aai/v14/business/customers/customer/${customer-name}/service-subscriptions/service-subscription/${service-type}/relationship-list/relationship
+ method: PUT
+ context:
+ remove_empty_node: true
+ body: '{
+ "related-to": "tenant",
+ "relationship-label": "org.onap.relationships.inventory.Uses",
+ "related-link": "/aai/v14/cloud-infrastructure/cloud-regions/cloud-region/${cloud-owner}/${cloud-region}/tenants/tenant/${cloud-tenant-id}",
+ "relationship-data": [
+ {
+ "relationship-key": "cloud-region.cloud-owner",
+ "relationship-value": "${cloud-owner}"
+ },
+ {
+ "relationship-key": "cloud-region.cloud-region-id",
+ "relationship-value": "${cloud-region}"
+ },
+ {
+ "relationship-key": "tenant.tenant-id",
+ "relationship-value": "${cloud-tenant-id}"
+ }
+ ],
+ "related-to-property": [
+ {
+ "property-key": "tenant.tenant-name",
+ "property-value": "${tenant-name}"
+ }
+ ]
+ }'
+ success_codes:
+ - 200
+ - 201
+ sample_response:
+ body: ''
diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-create-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-create-schema-dublin.yaml
index 19f144d2..6623b9e7 100644
--- a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-create-schema-dublin.yaml
+++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/business/subscription/subscription-create-schema-dublin.yaml
@@ -19,7 +19,7 @@ description: Create a subscription of a customer for given service in specific c
info:
product: onap-dublin
service: aai
- author: ONAP CLI Team onap-discuss@lists.onap.org
+ author: Intel ONAP HPA integration team (itohan.ukponmwan@intel.com)
parameters:
- name: customer-name
@@ -28,41 +28,77 @@ parameters:
short_option: x
long_option: customer-name
is_optional: false
- - name: cloud-name
- description: Onap cloud name
+ - name: cloud-owner
+ description: Onap cloud owner name
type: string
short_option: z
- long_option: cloud-name
- is_optional: true
+ long_option: cloud-owner
+ is_optional: false
- name: cloud-region
description: Onap cloud region
type: string
short_option: r
long_option: cloud-region
- is_optional: true
+ is_optional: false
- name: cloud-tenant-id
description: Onap cloud tenant id
type: string
short_option: c
long_option: cloud-tenant-id
- is_optional: true
+ is_optional: false
- name: service-type
description: Onap service type
type: string
short_option: e
long_option: service-type
is_optional: false
+ - name: tenant-name
+ description: name of tenant to use in the cloud region
+ type: string
+ short_option: y
+ long_option: tenant-name
+ is_optional: false
http:
service:
auth: basic
mode: direct
request:
- uri: /aai/v13/business/customers/customer/${customer-name}/service-subscriptions/service-subscription/${service-type}
+ uri: /aai/v14/business/customers/customer/${customer-name}/service-subscriptions/service-subscription/${service-type}
method: PUT
context:
remove_empty_node: true
- body: '{"service-type":"${service-type}"}'
+ body: '{
+ "service-type": "${service-type}",
+ "relationship-list": {
+ "relationship": [
+ {
+ "related-to": "tenant",
+ "relationship-label": "org.onap.relationships.inventory.Uses",
+ "related-link": "/aai/v14/cloud-infrastructure/cloud-regions/cloud-region/${cloud-owner}/${cloud-region}/tenants/tenant/${cloud-tenant-id}",
+ "relationship-data": [
+ {
+ "relationship-key": "cloud-region.cloud-owner",
+ "relationship-value": "${cloud-owner}"
+ },
+ {
+ "relationship-key": "cloud-region.cloud-region-id",
+ "relationship-value": "${cloud-region}"
+ },
+ {
+ "relationship-key": "tenant.tenant-id",
+ "relationship-value": "${cloud-tenant-id}"
+ }
+ ],
+ "related-to-property": [
+ {
+ "property-key": "tenant.tenant-name",
+ "property-value": "${tenant-name}"
+ }
+ ]
+ }
+ ]
+ } }'
success_codes:
- 200
- 201