Skip to content

Commit

Permalink
Automated commit 'Merge pull request #18 from sailpoint/NEROCKET-481
Browse files Browse the repository at this point in the history
NEROCKET-481 added documentation for synced attributes delete.' by github action: 7699835653
  • Loading branch information
developer-relations-sp committed Jan 29, 2024
1 parent c3d2602 commit e12fcda
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nerm/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ paths:
# Synced attributes
/profile_types/{profile_type_id}/synced_attributes:
$ref: "./paths/synced_attributes.yaml"
/profile_types/{profile_type_id}/synced_attributes/{ne_attribute_id}:
$ref: "./paths/synced_attributes_id.yaml"
# Profile Type Roles
/profile_type_roles:
$ref: "./paths/profile_type_roles.yaml"
Expand Down
8 changes: 8 additions & 0 deletions nerm/parameters/path/ne_attribute_id.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: ne_attribute_id
in: path
description: Ne attribute ID of the object
required: true
schema:
type: string
format: uuid
example: 1246d8b3-ac29-4015-8154-dea4434a73fa
8 changes: 8 additions & 0 deletions nerm/parameters/path/profile_type_id.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: profile_type_id
in: path
description: Profile type ID of the object
required: true
schema:
type: string
format: uuid
example: 1246d8b3-ac29-4015-8154-dea4434a73fa
16 changes: 16 additions & 0 deletions nerm/paths/synced_attributes_id.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
delete:
summary: Delete synced attribute
operationId: deleteSyncedAttribute
description: Delete a synced attribute.
tags:
- synced attributes
parameters:
- $ref: "../parameters/path/profile_type_id.yaml"
- $ref: "../parameters/path/ne_attribute_id.yaml"
responses:
'200':
$ref: "../responses/Info.yaml"
'400':
$ref: "../responses/400.yaml"
'500':
$ref: "../responses/500.yaml"

0 comments on commit e12fcda

Please sign in to comment.