mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
31 lines
1002 B
YAML
31 lines
1002 B
YAML
type: object
|
|
properties:
|
|
excludeTypes:
|
|
description: Object type names to be excluded from an sp-config export command.
|
|
type: array
|
|
items:
|
|
type: string
|
|
example: "SOURCE"
|
|
includeTypes:
|
|
description: Object type names to be included in an sp-config export command. IncludeTypes takes precedence over excludeTypes.
|
|
type: array
|
|
items:
|
|
type: string
|
|
example: "TRIGGER_SUBSCRIPTION"
|
|
objectOptions:
|
|
description: Additional options targeting specific objects related to each item in the includeTypes field
|
|
type: object
|
|
additionalProperties:
|
|
$ref: 'ObjectExportImportOptions.yaml'
|
|
example: {
|
|
"TRIGGER_SUBSCRIPTION": {
|
|
"includedIds": ["be9e116d-08e1-49fc-ab7f-fa585e96c9e4"],
|
|
"includedNames":["Test 2"]
|
|
}
|
|
}
|
|
defaultReferences:
|
|
description: List of BaseRefenceDtos that can be used to resolve references on import.
|
|
type: array
|
|
items:
|
|
$ref: '../../v3/schemas/BaseReferenceDto.yaml'
|