Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Release 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 22, 2023
1 parent 372949b commit 4e5ec17
Showing 1 changed file with 93 additions and 4 deletions.
97 changes: 93 additions & 4 deletions openapi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.1
info:
title: api
version: 0.1.8
version: 0.1.9
paths:
/auth/v1/tokens:
get:
Expand Down Expand Up @@ -85,11 +85,11 @@ paths:
expiresAt:
type: string
format: date-time
/auth/v1/method/token:
/auth/v1/method/token/:
post:
operationId: Authentication.createToken
operationId: AuthenticationMethodToken.createToken
tags:
- Authentication
- AuthenticationMethodToken
parameters: []
responses:
'200':
Expand All @@ -116,6 +116,81 @@ paths:
required:
- name
- description
/auth/v1/method/oidc/{provider}/authorize:
get:
operationId: AuthenticationMethodOIDC.authorizeURL
tags:
- AuthenticationMethodOIDC
parameters:
- name: provider
in: path
required: true
schema:
type: string
- name: state
in: query
required: true
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/AuthoidcAuthorizeURLResponse'
/auth/v1/method/oidc/{provider}/callback:
get:
operationId: AuthenticationMethodOIDC.callback
tags:
- AuthenticationMethodOIDC
parameters:
- name: provider
in: path
required: true
schema:
type: string
- name: code
in: query
required: true
schema:
type: string
- name: state
in: query
required: true
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/AuthoidcCallbackResponse'
/auth/v1/method/kubernetes/serviceaccount:
post:
operationId: AuthenticationMethodKubernetes.verifyServiceAccount
tags:
- AuthenticationMethodKubernetes
parameters: []
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/AuthauthenticationToken'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
serviceAccountToken:
type: string
required:
- serviceAccountToken
/api/v1/segments/{segmentKey}/constraints:
post:
operationId: Constraints.create
Expand Down Expand Up @@ -951,6 +1026,20 @@ components:
required:
- clientToken
- authentication
AuthoidcAuthorizeURLResponse:
type: object
properties:
authorizeUrl:
type: string
required:
- authorizeUrl
AuthoidcCallbackResponse:
type: object
properties:
authentication:
$ref: '#/components/schemas/Authauthentication'
required:
- authentication
CommonsPageable:
type: object
properties:
Expand Down

0 comments on commit 4e5ec17

Please sign in to comment.