diff --git a/openapi/v2023.8.2/bundled.yaml b/openapi/v2023.8.2/bundled.yaml index 244a626..20ad0bc 100644 --- a/openapi/v2023.8.2/bundled.yaml +++ b/openapi/v2023.8.2/bundled.yaml @@ -2330,6 +2330,39 @@ paths: x-specification-pii-or-sensitive: 'False' x-specification-scenario: '' x-specification-usecase: UC-C-PIC-A-004 + /config/idp/open-ids: + post: + tags: + - config + summary: LIST - List IDP + operationId: configListIdp + description: LIST - List IDP + parameters: + - $ref: '#/paths/~1config~1policies/get/parameters/1' + - $ref: '#/paths/~1config~1policies/get/parameters/2' + x-specification-usecase: '' + x-specification-scenario: '' + x-specification-pii-or-sensitive: 'True' + x-specification-crudl-model: IDP + responses: + '200': + description: '' + content: + application/json: + schema: + type: object + properties: + idps: + type: array + items: + allOf: + - $ref: '#/paths/~1config~1idp~1open-id~1%7BidpId%7D/delete/responses/200/content/application~1json/schema' + pagination: + $ref: '#/components/schemas/Pagination' + '400': + description: bad input parameter + security: + - BearerAuth: [] /config/admin/apikey: post: description: CREATE - Create an API key diff --git a/openapi/v2023.8.2/index.yaml b/openapi/v2023.8.2/index.yaml index 3184da5..5d68329 100644 --- a/openapi/v2023.8.2/index.yaml +++ b/openapi/v2023.8.2/index.yaml @@ -172,6 +172,9 @@ paths: $ref: "./paths/configUpdateIdp.yaml" delete: $ref: "./paths/configDeleteIdp.yaml" + /config/idp/open-ids: + post: + $ref: "./paths/configListIdp.yaml" /config/admin/apikey: post: $ref: "./paths/configCreateApikey.yaml" diff --git a/openapi/v2023.8.2/paths/configListIdp.yaml b/openapi/v2023.8.2/paths/configListIdp.yaml new file mode 100644 index 0000000..8154aba --- /dev/null +++ b/openapi/v2023.8.2/paths/configListIdp.yaml @@ -0,0 +1,34 @@ +tags: + - config +summary: "LIST - List IDP" +operationId: "configListIdp" +description: "LIST - List IDP" +parameters: + - $ref: "../parameters/offset.yaml" + - $ref: "../parameters/limit.yaml" + +x-specification-usecase: "" +x-specification-scenario: "" +x-specification-pii-or-sensitive: "True" +x-specification-crudl-model: "IDP" +responses: + "200": + description: "" + + content: + application/json: + schema: + type: object + properties: + idps: + type: array + items: + allOf: + - $ref: "../definitions/IDP.yaml" + pagination: + $ref: "../definitions/Pagination.yaml" + + "400": + description: bad input parameter +security: + - BearerAuth: []