business-applications/src/PSSailpoint.BusinessApplications/Model/SanctionedStatus.ps1
|
# # Identity Security Cloud API - Business Applications # 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 SanctionedStatus. .DESCRIPTION Indicates whether a Business Application is sanctioned for use within the organization. Machine identities linked to a Business Application inherit this value. Defaults to `UNKNOWN` when not explicitly set. #> enum SanctionedStatus { # enum value: "SANCTIONED" SANCTIONED # enum value: "UNSANCTIONED" UNSANCTIONED # enum value: "UNKNOWN" UNKNOWN } |