From e12fcda4d52bdf13bce07f3b29f3fd0dc3a2d91d Mon Sep 17 00:00:00 2001 From: developer-relations-sp Date: Mon, 29 Jan 2024 17:12:56 +0000 Subject: [PATCH] Automated commit 'Merge pull request #18 from sailpoint/NEROCKET-481 NEROCKET-481 added documentation for synced attributes delete.' by github action: 7699835653 --- nerm/openapi.yaml | 2 ++ nerm/parameters/path/ne_attribute_id.yaml | 8 ++++++++ nerm/parameters/path/profile_type_id.yaml | 8 ++++++++ nerm/paths/synced_attributes_id.yaml | 16 ++++++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 nerm/parameters/path/ne_attribute_id.yaml create mode 100644 nerm/parameters/path/profile_type_id.yaml create mode 100644 nerm/paths/synced_attributes_id.yaml diff --git a/nerm/openapi.yaml b/nerm/openapi.yaml index cc13344c..8870f734 100644 --- a/nerm/openapi.yaml +++ b/nerm/openapi.yaml @@ -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" diff --git a/nerm/parameters/path/ne_attribute_id.yaml b/nerm/parameters/path/ne_attribute_id.yaml new file mode 100644 index 00000000..dc86258d --- /dev/null +++ b/nerm/parameters/path/ne_attribute_id.yaml @@ -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 \ No newline at end of file diff --git a/nerm/parameters/path/profile_type_id.yaml b/nerm/parameters/path/profile_type_id.yaml new file mode 100644 index 00000000..96345f73 --- /dev/null +++ b/nerm/parameters/path/profile_type_id.yaml @@ -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 \ No newline at end of file diff --git a/nerm/paths/synced_attributes_id.yaml b/nerm/paths/synced_attributes_id.yaml new file mode 100644 index 00000000..4050f278 --- /dev/null +++ b/nerm/paths/synced_attributes_id.yaml @@ -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" \ No newline at end of file