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 - Service Desk Integration
summary: Update a 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. 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: parameters:
- name: id - name: id
in: path 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. 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: 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. A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
content: content:
application/json-patch+json: application/json-patch+json:
schema: schema:
$ref: '../schemas/JsonPatch.yaml' $ref: '../schemas/JsonPatch.yaml'
example:
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
}
}
]
responses: responses:
"200": "200":
description: ServiceDeskIntegrationDto as updated description: ServiceDeskIntegrationDto as updated

View File

@@ -23,7 +23,7 @@ post:
"description": "Export all available objects", "description": "Export all available objects",
"excludeTypes": [], "excludeTypes": [],
"includeTypes": "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": {}, "objectOptions": {},
} }
Export sources by ID: Export sources by ID:

View File

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

View File

@@ -41,7 +41,7 @@ put:
- Service Desk Integration - Service Desk Integration
summary: Update a 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. 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: parameters:
- name: id - name: id
in: path 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. 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: 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. A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
content: content:
application/json-patch+json: application/json-patch+json:
schema: schema:
$ref: '../schemas/JsonPatch.yaml' $ref: '../schemas/JsonPatch.yaml'
example:
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
}
}
]
responses: responses:
"200": "200":
description: ServiceDeskIntegrationDto as updated description: ServiceDeskIntegrationDto as updated