Automated commit by github action: 5190957036

This commit is contained in:
GitHub Action Bot
2023-06-06 16:20:40 +00:00
parent 07d5ef6a30
commit 616b904e07
4 changed files with 55 additions and 13 deletions

View File

@@ -41,7 +41,7 @@ put:
- Service Desk Integration
summary: Update a Service Desk integration
description: Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
operationId: updateServiceDeskIntegration
operationId: putServiceDeskIntegration
parameters:
- name: id
in: path
@@ -137,13 +137,27 @@ patch:
A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
PATCH can only be applied to the following fields:
* "beforeProvisioningRule"
* `beforeProvisioningRule`
* `description`
* `ownerRef`
A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
content:
application/json-patch+json:
schema:
$ref: '../schemas/JsonPatch.yaml'
example:
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
}
}
]
responses:
"200":
description: ServiceDeskIntegrationDto as updated

View File

@@ -23,7 +23,7 @@ post:
"description": "Export all available objects",
"excludeTypes": [],
"includeTypes":
["SOURCE", "RULE", "TRIGGER_SUBSCRIPTION", "TRANSFORM", "IDENTITY_PROFILE"],
["ACCESS_PROFILE", "AUTH_ORG", "FORM_DEFINITION", "GOVERNANCE_GROUP", "IDENTITY_PROFILE", "NOTIFICATION_TEMPLATE", "PUBLIC_IDENTITIES_CONFIG", "ROLE", "RULE", "SOURCE", "TRANSFORM", "TRIGGER_SUBSCRIPTION"],
"objectOptions": {},
}
Export sources by ID:

View File

@@ -6,11 +6,18 @@ properties:
items:
type: string
enum:
- SOURCE
- RULE
- TRIGGER_SUBSCRIPTION
- TRANSFORM
- ACCESS_PROFILE
- AUTH_ORG
- FORM_DEFINITION
- GOVERNANCE_GROUP
- IDENTITY_PROFILE
- NOTIFICATION_TEMPLATE
- PUBLIC_IDENTITIES_CONFIG
- ROLE
- RULE
- SOURCE
- TRANSFORM
- TRIGGER_SUBSCRIPTION
example: "SOURCE"
includeTypes:
description: Object type names to be included in an sp-config export command. IncludeTypes takes precedence over excludeTypes.
@@ -18,11 +25,18 @@ properties:
items:
type: string
enum:
- SOURCE
- RULE
- TRIGGER_SUBSCRIPTION
- TRANSFORM
- ACCESS_PROFILE
- AUTH_ORG
- FORM_DEFINITION
- GOVERNANCE_GROUP
- IDENTITY_PROFILE
- NOTIFICATION_TEMPLATE
- PUBLIC_IDENTITIES_CONFIG
- ROLE
- RULE
- SOURCE
- TRANSFORM
- TRIGGER_SUBSCRIPTION
example: "TRIGGER_SUBSCRIPTION"
objectOptions:
description: Additional options targeting specific objects related to each item in the includeTypes field

View File

@@ -41,7 +41,7 @@ put:
- Service Desk Integration
summary: Update a Service Desk integration
description: Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
operationId: updateServiceDeskIntegration
operationId: putServiceDeskIntegration
parameters:
- name: id
in: path
@@ -137,13 +137,27 @@ patch:
A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
PATCH can only be applied to the following fields:
* "beforeProvisioningRule"
* `beforeProvisioningRule`
* `description`
* `ownerRef`
A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
content:
application/json-patch+json:
schema:
$ref: '../schemas/JsonPatch.yaml'
example:
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
}
}
]
responses:
"200":
description: ServiceDeskIntegrationDto as updated