-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathopenapi.yml
68 lines (64 loc) · 1.51 KB
/
openapi.yml
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
openapi: 3.0.0
info:
title: inbound-saml
version: 1.0.0
license:
name: Apache-2.0
description: |-
Gluu inbound-saml module API to provide public metadata and feature to add Trusted IDP from metadata url
servers:
- url: /inbound-saml
paths:
/sp/metadata:
get:
security: []
summary: /sp/metadata
responses:
'200':
description: SP Proxy xml metadata
'304':
description: not modified
tags:
- Metadata
/trust-relation/metadata:
post:
summary: /trust-relation/metadata
description: Creates a new trust-relation from metadata URL
security:
- basicAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/trustedIdpFromUrlProps'
responses:
'201':
description: created
tags:
- TrustedIdp
tags: []
components:
schemas:
trustedIdpFromUrlProps:
type: object
required:
- name
- host
- url
properties:
name:
type: string
example: 'SuperCustomer Remote IDP'
host:
type: string
description: hostname including any subdomain
example: 'idp.supercustomer.org'
url:
type: string
description: metadata public url
example: 'https://idp.supercustomer.org/idp/metadata'
securitySchemes:
basicAuth:
type: http
scheme: basic