aboutsummaryrefslogtreecommitdiffstats
path: root/docs/offeredapis/api_hub/swagger.yaml
blob: ec59aa66293370ae022bb3f75375675854d807c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#    Copyright (c) 2018 Orange
#
#    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.swagger: "2.0"
swagger: "2.0"
info:
  description: "Provides the ability to subscribe to and unsubscribe from External\
    \ API notifications.\n\n**Main operation**\n\n```\nPOST /hub\n```\n\nrequest sample\
    \ 1\n\n```\n{\n  \"callback\": \"http://mydomain/notification\",\n  \"query\"\
    : \"eventType = ServiceOrderCreationNotification\"\n}\n```\n\nrequest sample 2\n\
    \n```\n{\n  \"callback\": \"http://mydomain/notification\",\n  \"query\": \"eventType=ServiceOrderCreationNotification,ServiceOrderStateChangeNotification\"\
    \n}\n```\n\n**EventType for serviceOrdering**\n\n- ServiceOrderCreationNotification\n\
    - ServiceOrderStateChangeNotification\n- ServiceOrderItemStateChangeNotification\n\
    \n**EventType for serviceInventory**\n\n- ServiceCreationNotification\n- ServiceAttributeValueChangeNotification\n\
    - ServiceRemoveNotification\n\n"
  version: "4.1.0"
  title: "Hub API"
  contact:
    name: "ONAP"
    url: "https://onap.readthedocs.io"
    email: "onap-discuss@lists.onap.org"
  license:
    name: "Apache 2.0"
    url: "http://www.apache.org/licenses/LICENSE-2.0"
  x-planned-retirement-date: "205001"
  x-component: "NBI"
  x-logo:
    url: "/redoc/logo.png"
    backgroundColor: "#FFFFFF"
host: "serverRoot:30274"
basePath: "/nbi/api/v4"
schemes:
- "http"
- "https"
produces:
- "application/json;charset=utf-8"
tags:
- name: "Hub"
  description: "provided by NBI"
paths:
  x-interface:
    api-version: "4.1.0"
    last-mod-release: "Frankfurt"
  /hub:
    post:
      tags:
      - "Hub"
      consumes:
      - "application/json;charset=utf-8"
      produces:
      - "application/json;charset=utf-8"
      operationId: "hub_Create"
      summary: "create hub"
      description: ""
      deprecated: false
      parameters:
      - name: "Hub"
        required: true
        in: "body"
        description: ""
        schema:
          $ref: "#/definitions/HubIn"
      responses:
        "201":
          description: "Created"
          schema:
            $ref: "#/definitions/Hub"
    get:
      tags:
      - "Hub"
      produces:
      - "application/json;charset=utf-8"
      operationId: "hub_Find"
      summary: "find hub"
      description: ""
      deprecated: false
      responses:
        "200":
          description: "Ok"
          schema:
            type: "array"
            items:
              $ref: "#/definitions/Hub"
  /hub/{hubId}:
    get:
      tags:
      - "Hub"
      produces:
      - "application/json;charset=utf-8"
      operationId: "hub_Get"
      summary: "get hub"
      description: ""
      deprecated: false
      parameters:
      - name: "hubId"
        required: true
        in: "path"
        type: "string"
      responses:
        "200":
          description: "Ok"
          schema:
            $ref: "#/definitions/Hub"
    delete:
      tags:
      - "Hub"
      operationId: "hub_Delete"
      summary: "delete hub"
      description: ""
      deprecated: false
      parameters:
      - name: "hubId"
        required: true
        in: "path"
        type: "string"
      responses:
        "204":
          description: "No Content"
definitions:
  ErrorDetail:
    description: "Error code and message"
    required:
    - "code"
    - "message"
    type: "object"
    properties:
      code:
        description: ""
        type: "integer"
        format: "int32"
      message:
        description: ""
        type: "string"
      description:
        description: ""
        type: "string"
      infoURL:
        description: ""
        type: "string"
  Error:
    description: "Error code and description"
    required:
    - "code"
    - "message"
    type: "object"
    properties:
      code:
        description: ""
        type: "integer"
        format: "int32"
      message:
        description: ""
        type: "string"
      description:
        description: ""
        type: "string"
      infoURL:
        description: ""
        type: "string"
      details:
        type: "array"
        items:
          $ref: "#/definitions/ErrorDetail"
  HubIn:
    description: "Query and callback"
    required:
    - "query"
    - "callback"
    type: "object"
    properties:
      query:
        description: "The query must have an eventType= information.\\nOptionally\
          \ a ? could be added to reduce hub.\\nquery”:”eventType = ServiceOrderStateChangeNotification”\
          &serviceOrder.state=COMPLETED"
        type: "string"
      callback:
        description: "URL where notification must be send"
        type: "string"
  Hub:
    description: "Hub id, callback and query"
    required:
    - "id"
    - "query"
    - "callback"
    type: "object"
    properties:
      id:
        description: ""
        type: "string"
      query:
        description: "The query must have an eventType= information.\\nOptionally\
          \ a ? could be added to reduce hub.\\nquery”:”eventType = ServiceOrderStateChangeNotification”\
          &serviceOrder.state=COMPLETED"
        type: "string"
      callback:
        description: "URL where notification must be send"
        type: "string"