machine-identities/src/PSSailpoint.MachineIdentities/Model/CorrelationType.ps1
|
# # Identity Security Cloud API - Machine Identities # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS Enum CorrelationType. .DESCRIPTION Whether the Business Application reference was manually assigned or automatically correlated. On write (create/patch), omit or send `MANUAL` (default). `AUTOMATIC` is rejected with `400 Bad Request`. #> enum CorrelationType { # enum value: "MANUAL" MANUAL # enum value: "AUTOMATIC" AUTOMATIC } |