Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-relations-sp authored and github-actions[bot] committed May 14, 2024
1 parent 0d86077 commit 783f479
Show file tree
Hide file tree
Showing 4 changed files with 8,396 additions and 8,066 deletions.
88 changes: 88 additions & 0 deletions dereferenced/deref-sailpoint-api.nerm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,94 @@ paths:
error:
description: A message describing the error
example: Sorry something went wrong
'/languages/{locale}':
patch:
summary: Update a language by locale
operationId: patchLanguage
description: Update a language by locale
tags:
- languages
parameters:
- name: language_locale
in: path
description: Language locale of the object
required: true
schema:
type: string
format: string
example: es
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
language:
type: object
properties:
default:
type: boolean
description: 'Set default to True to set a default language, to set another language to default, set default to True on the target language and the current default will become disabled'
example: true
enabled:
type: boolean
description: 'True when the language is enabled, False when it is not'
example: true
locale:
type: string
description: 'The locale string for the language, current options are- en, fr, es, de, fr-CA'
example: es
responses:
'200':
description: Expected response to a valid request
content:
application/json:
schema:
type: object
properties:
language:
type: object
properties:
default:
type: boolean
description: 'Set default to True to set a default language, to set another language to default, set default to True on the target language and the current default will become disabled'
example: true
enabled:
type: boolean
description: 'True when the language is enabled, False when it is not'
example: true
locale:
type: string
description: 'The locale string for the language, current options are- en, fr, es, de, fr-CA'
example: es
'400':
description: Bad Request - unable to complete.
content:
application/json:
schema:
oneOf:
- type: object
properties:
error:
example: Invalid JSON syntax. Please check your syntax and try again.
- type: object
properties:
error:
example: The <object> failed to create/update
errors:
example:
attribute: can't be blank
'500':
description: Internal Server Error - returned on unhandled exceptions.
content:
application/json:
schema:
type: object
properties:
error:
description: A message describing the error
example: Sorry something went wrong
/user_manager:
post:
summary: Create a new user-manager relationship
Expand Down
Loading

0 comments on commit 783f479

Please sign in to comment.