v3/src/PSSailpoint/Model/NamedConstructs.ps1

#
# IdentityNow V3 API
# Use these APIs to interact with the IdentityNow 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: 3.0.0
# Generated by OpenAPI Generator: https://openapi-generator.tech
#

<#
.SYNOPSIS

Enum NamedConstructs.

.DESCRIPTION

| Construct | Date Time Pattern | Description | | --------- | ----------------- | ----------- | | ISO8601 | `yyyy-MM-dd'T'HH:mm:ss.SSSX` | The ISO8601 standard. | | LDAP | `yyyyMMddHHmmss.Z` | The LDAP standard. | | PEOPLE_SOFT | `MM/dd/yyyy` | The date format People Soft uses. | | EPOCH_TIME_JAVA | # ms from midnight, January 1st, 1970 | The incoming date value as elapsed time in milliseconds from midnight, January 1st, 1970. | | EPOCH_TIME_WIN32| # intervals of 100ns from midnight, January 1st, 1601 | The incoming date value as elapsed time in 100-nanosecond intervals from midnight, January 1st, 1601. |
#>


enum NamedConstructs {
    # enum value: "ISO8601"
    ISO8601
    # enum value: "LDAP"
    LDAP
    # enum value: "PEOPLE_SOFT"
    PEOPLE_SOFT
    # enum value: "EPOCH_TIME_JAVA"
    EPOCH_TIME_JAVA
    # enum value: "EPOCH_TIME_WIN32"
    EPOCH_TIME_WIN32
}