|
| 1 | +#%RAML 1.0 Library |
| 2 | +types: |
| 3 | + health: |
| 4 | + properties: |
| 5 | + status: |
| 6 | + enum: [ "healthy", "unhealthy" ] |
| 7 | + version: string |
| 8 | + netmaster: |
| 9 | + properties: |
| 10 | + status: |
| 11 | + enum: [ "healthy", "unhealthy" ] |
| 12 | + reason: |
| 13 | + type: string |
| 14 | + required: false |
| 15 | + description: reason for netmaster being unhealthy |
| 16 | + version: |
| 17 | + type: string |
| 18 | + required: false |
| 19 | + description: omitted in case netmaster is unhealthy |
| 20 | + example: | |
| 21 | + {"netmaster":{"status":"healthy","version":"pv1.0.0-alpha-01-27-2017.23-16-47.UTC"},"status":"healthy","version":"1.0.0-alpha"} |
| 22 | + |
| 23 | + ldap_configuration: |
| 24 | + properties: |
| 25 | + server: |
| 26 | + type: string |
| 27 | + description: FQDN or IP address of AD server |
| 28 | + example: auth.local.com |
| 29 | + port: |
| 30 | + type: integer |
| 31 | + format: int16 |
| 32 | + minimum: 0 |
| 33 | + description: port where AD server is listening |
| 34 | + example: 389 |
| 35 | + base_dn: |
| 36 | + type: string |
| 37 | + description: Distinguished name for base entity. All search queries will be scope to this BaseDN |
| 38 | + example: ou=eng,dc=auth,dc=com |
| 39 | + service_account_dn: |
| 40 | + type: string |
| 41 | + description: DN of the service account. auth_proxy will use this account to communicate with AD server. Hence this account must have appropriate privileges, specifically for lookup. |
| 42 | + service_account_password: |
| 43 | + type: string |
| 44 | + start_tls: |
| 45 | + type: boolean |
| 46 | + description: switch session to TLS after proxy connects to AD server. This option must be configured on AD server. Recommended to set to true in production environments. |
| 47 | + insecure_skip_verify: |
| 48 | + type: boolean |
| 49 | + description: skip cert check on AD server. Recommended to set to false for production environments. |
| 50 | + upd_ldap_configuration: |
| 51 | + type: ldap_configuration |
| 52 | + |
| 53 | + |
| 54 | + local_user: |
| 55 | + properties: |
| 56 | + username: string |
| 57 | + password: string |
| 58 | + firstname: |
| 59 | + type: string |
| 60 | + example: John |
| 61 | + required: false |
| 62 | + lastname: |
| 63 | + type: string |
| 64 | + example: Doe |
| 65 | + required: false |
| 66 | + disable: |
| 67 | + type: boolean |
| 68 | + required: false |
| 69 | + example: |
| 70 | + username: johndoe |
| 71 | + password: p@ssw0rd |
| 72 | + upd_local_user: |
| 73 | + properties: |
| 74 | + firstname: |
| 75 | + type: string |
| 76 | + required: false |
| 77 | + lastname: |
| 78 | + type: string |
| 79 | + required: false |
| 80 | + disable: |
| 81 | + type: boolean |
| 82 | + required: false |
| 83 | + password: |
| 84 | + type: string |
| 85 | + required: false |
| 86 | + example: |
| 87 | + firstname: Jane |
| 88 | + disable: true |
| 89 | + local_users: |
| 90 | + type: array |
| 91 | + items: |
| 92 | + type: local_user |
| 93 | + |
| 94 | + login: |
| 95 | + properties: |
| 96 | + username: |
| 97 | + type: string |
| 98 | + description: user name. If a local user doesn't exist by that name, AD authentication will be tried using sAMAccountName=username in BaseDN scope of the AD server (see ldap configuration for more details) |
| 99 | + password: string |
| 100 | + example: |
| 101 | + username: johndoe |
| 102 | + password: p@ssw0rd |
| 103 | + login_response: |
| 104 | + properties: |
| 105 | + token: |
| 106 | + type: string |
| 107 | + description: opaque token string, callers should set custom security header to this token before calling further APIs (see security information for protected APIs) |
| 108 | + |
| 109 | + |
| 110 | + authorization: |
| 111 | + properties: |
| 112 | + principalName: string |
| 113 | + local: boolean |
| 114 | + role: string |
| 115 | + tenantName: string |
| 116 | + example: |
| 117 | + principalName: johndoe |
| 118 | + local: true |
| 119 | + role: ops |
| 120 | + tenantName: johnstenant |
| 121 | + upd_authorization: |
| 122 | + type: authorization |
| 123 | + authorizations: |
| 124 | + type: array |
| 125 | + items: |
| 126 | + type: authorization |
0 commit comments