{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.SSM.Types.OpsItemFilterKey
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.SSM.Types.OpsItemFilterKey
  ( OpsItemFilterKey
      ( ..,
        OpsItemFilterKey_AccountId,
        OpsItemFilterKey_ActualEndTime,
        OpsItemFilterKey_ActualStartTime,
        OpsItemFilterKey_AutomationId,
        OpsItemFilterKey_Category,
        OpsItemFilterKey_ChangeRequestByApproverArn,
        OpsItemFilterKey_ChangeRequestByApproverName,
        OpsItemFilterKey_ChangeRequestByRequesterArn,
        OpsItemFilterKey_ChangeRequestByRequesterName,
        OpsItemFilterKey_ChangeRequestByTargetsResourceGroup,
        OpsItemFilterKey_ChangeRequestByTemplate,
        OpsItemFilterKey_CreatedBy,
        OpsItemFilterKey_CreatedTime,
        OpsItemFilterKey_InsightByType,
        OpsItemFilterKey_LastModifiedTime,
        OpsItemFilterKey_OperationalData,
        OpsItemFilterKey_OperationalDataKey,
        OpsItemFilterKey_OperationalDataValue,
        OpsItemFilterKey_OpsItemId,
        OpsItemFilterKey_OpsItemType,
        OpsItemFilterKey_PlannedEndTime,
        OpsItemFilterKey_PlannedStartTime,
        OpsItemFilterKey_Priority,
        OpsItemFilterKey_ResourceId,
        OpsItemFilterKey_Severity,
        OpsItemFilterKey_Source,
        OpsItemFilterKey_Status,
        OpsItemFilterKey_Title
      ),
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

newtype OpsItemFilterKey = OpsItemFilterKey'
  { OpsItemFilterKey -> Text
fromOpsItemFilterKey ::
      Data.Text
  }
  deriving stock
    ( Int -> OpsItemFilterKey -> ShowS
[OpsItemFilterKey] -> ShowS
OpsItemFilterKey -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [OpsItemFilterKey] -> ShowS
$cshowList :: [OpsItemFilterKey] -> ShowS
show :: OpsItemFilterKey -> String
$cshow :: OpsItemFilterKey -> String
showsPrec :: Int -> OpsItemFilterKey -> ShowS
$cshowsPrec :: Int -> OpsItemFilterKey -> ShowS
Prelude.Show,
      ReadPrec [OpsItemFilterKey]
ReadPrec OpsItemFilterKey
Int -> ReadS OpsItemFilterKey
ReadS [OpsItemFilterKey]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [OpsItemFilterKey]
$creadListPrec :: ReadPrec [OpsItemFilterKey]
readPrec :: ReadPrec OpsItemFilterKey
$creadPrec :: ReadPrec OpsItemFilterKey
readList :: ReadS [OpsItemFilterKey]
$creadList :: ReadS [OpsItemFilterKey]
readsPrec :: Int -> ReadS OpsItemFilterKey
$creadsPrec :: Int -> ReadS OpsItemFilterKey
Prelude.Read,
      OpsItemFilterKey -> OpsItemFilterKey -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c/= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
== :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c== :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
Prelude.Eq,
      Eq OpsItemFilterKey
OpsItemFilterKey -> OpsItemFilterKey -> Bool
OpsItemFilterKey -> OpsItemFilterKey -> Ordering
OpsItemFilterKey -> OpsItemFilterKey -> OpsItemFilterKey
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: OpsItemFilterKey -> OpsItemFilterKey -> OpsItemFilterKey
$cmin :: OpsItemFilterKey -> OpsItemFilterKey -> OpsItemFilterKey
max :: OpsItemFilterKey -> OpsItemFilterKey -> OpsItemFilterKey
$cmax :: OpsItemFilterKey -> OpsItemFilterKey -> OpsItemFilterKey
>= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c>= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
> :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c> :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
<= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c<= :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
< :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
$c< :: OpsItemFilterKey -> OpsItemFilterKey -> Bool
compare :: OpsItemFilterKey -> OpsItemFilterKey -> Ordering
$ccompare :: OpsItemFilterKey -> OpsItemFilterKey -> Ordering
Prelude.Ord,
      forall x. Rep OpsItemFilterKey x -> OpsItemFilterKey
forall x. OpsItemFilterKey -> Rep OpsItemFilterKey x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep OpsItemFilterKey x -> OpsItemFilterKey
$cfrom :: forall x. OpsItemFilterKey -> Rep OpsItemFilterKey x
Prelude.Generic
    )
  deriving newtype
    ( Eq OpsItemFilterKey
Int -> OpsItemFilterKey -> Int
OpsItemFilterKey -> Int
forall a. Eq a -> (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: OpsItemFilterKey -> Int
$chash :: OpsItemFilterKey -> Int
hashWithSalt :: Int -> OpsItemFilterKey -> Int
$chashWithSalt :: Int -> OpsItemFilterKey -> Int
Prelude.Hashable,
      OpsItemFilterKey -> ()
forall a. (a -> ()) -> NFData a
rnf :: OpsItemFilterKey -> ()
$crnf :: OpsItemFilterKey -> ()
Prelude.NFData,
      Text -> Either String OpsItemFilterKey
forall a. (Text -> Either String a) -> FromText a
fromText :: Text -> Either String OpsItemFilterKey
$cfromText :: Text -> Either String OpsItemFilterKey
Data.FromText,
      OpsItemFilterKey -> Text
forall a. (a -> Text) -> ToText a
toText :: OpsItemFilterKey -> Text
$ctoText :: OpsItemFilterKey -> Text
Data.ToText,
      OpsItemFilterKey -> ByteString
forall a. (a -> ByteString) -> ToByteString a
toBS :: OpsItemFilterKey -> ByteString
$ctoBS :: OpsItemFilterKey -> ByteString
Data.ToByteString,
      OpsItemFilterKey -> ByteStringBuilder
forall a. (a -> ByteStringBuilder) -> ToLog a
build :: OpsItemFilterKey -> ByteStringBuilder
$cbuild :: OpsItemFilterKey -> ByteStringBuilder
Data.ToLog,
      HeaderName -> OpsItemFilterKey -> [Header]
forall a. (HeaderName -> a -> [Header]) -> ToHeader a
toHeader :: HeaderName -> OpsItemFilterKey -> [Header]
$ctoHeader :: HeaderName -> OpsItemFilterKey -> [Header]
Data.ToHeader,
      OpsItemFilterKey -> QueryString
forall a. (a -> QueryString) -> ToQuery a
toQuery :: OpsItemFilterKey -> QueryString
$ctoQuery :: OpsItemFilterKey -> QueryString
Data.ToQuery,
      Value -> Parser [OpsItemFilterKey]
Value -> Parser OpsItemFilterKey
forall a.
(Value -> Parser a) -> (Value -> Parser [a]) -> FromJSON a
parseJSONList :: Value -> Parser [OpsItemFilterKey]
$cparseJSONList :: Value -> Parser [OpsItemFilterKey]
parseJSON :: Value -> Parser OpsItemFilterKey
$cparseJSON :: Value -> Parser OpsItemFilterKey
Data.FromJSON,
      FromJSONKeyFunction [OpsItemFilterKey]
FromJSONKeyFunction OpsItemFilterKey
forall a.
FromJSONKeyFunction a -> FromJSONKeyFunction [a] -> FromJSONKey a
fromJSONKeyList :: FromJSONKeyFunction [OpsItemFilterKey]
$cfromJSONKeyList :: FromJSONKeyFunction [OpsItemFilterKey]
fromJSONKey :: FromJSONKeyFunction OpsItemFilterKey
$cfromJSONKey :: FromJSONKeyFunction OpsItemFilterKey
Data.FromJSONKey,
      [OpsItemFilterKey] -> Encoding
[OpsItemFilterKey] -> Value
OpsItemFilterKey -> Encoding
OpsItemFilterKey -> Value
forall a.
(a -> Value)
-> (a -> Encoding)
-> ([a] -> Value)
-> ([a] -> Encoding)
-> ToJSON a
toEncodingList :: [OpsItemFilterKey] -> Encoding
$ctoEncodingList :: [OpsItemFilterKey] -> Encoding
toJSONList :: [OpsItemFilterKey] -> Value
$ctoJSONList :: [OpsItemFilterKey] -> Value
toEncoding :: OpsItemFilterKey -> Encoding
$ctoEncoding :: OpsItemFilterKey -> Encoding
toJSON :: OpsItemFilterKey -> Value
$ctoJSON :: OpsItemFilterKey -> Value
Data.ToJSON,
      ToJSONKeyFunction [OpsItemFilterKey]
ToJSONKeyFunction OpsItemFilterKey
forall a.
ToJSONKeyFunction a -> ToJSONKeyFunction [a] -> ToJSONKey a
toJSONKeyList :: ToJSONKeyFunction [OpsItemFilterKey]
$ctoJSONKeyList :: ToJSONKeyFunction [OpsItemFilterKey]
toJSONKey :: ToJSONKeyFunction OpsItemFilterKey
$ctoJSONKey :: ToJSONKeyFunction OpsItemFilterKey
Data.ToJSONKey,
      [Node] -> Either String OpsItemFilterKey
forall a. ([Node] -> Either String a) -> FromXML a
parseXML :: [Node] -> Either String OpsItemFilterKey
$cparseXML :: [Node] -> Either String OpsItemFilterKey
Data.FromXML,
      OpsItemFilterKey -> XML
forall a. (a -> XML) -> ToXML a
toXML :: OpsItemFilterKey -> XML
$ctoXML :: OpsItemFilterKey -> XML
Data.ToXML
    )

pattern OpsItemFilterKey_AccountId :: OpsItemFilterKey
pattern $bOpsItemFilterKey_AccountId :: OpsItemFilterKey
$mOpsItemFilterKey_AccountId :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_AccountId = OpsItemFilterKey' "AccountId"

pattern OpsItemFilterKey_ActualEndTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ActualEndTime :: OpsItemFilterKey
$mOpsItemFilterKey_ActualEndTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ActualEndTime = OpsItemFilterKey' "ActualEndTime"

pattern OpsItemFilterKey_ActualStartTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ActualStartTime :: OpsItemFilterKey
$mOpsItemFilterKey_ActualStartTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ActualStartTime = OpsItemFilterKey' "ActualStartTime"

pattern OpsItemFilterKey_AutomationId :: OpsItemFilterKey
pattern $bOpsItemFilterKey_AutomationId :: OpsItemFilterKey
$mOpsItemFilterKey_AutomationId :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_AutomationId = OpsItemFilterKey' "AutomationId"

pattern OpsItemFilterKey_Category :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Category :: OpsItemFilterKey
$mOpsItemFilterKey_Category :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Category = OpsItemFilterKey' "Category"

pattern OpsItemFilterKey_ChangeRequestByApproverArn :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByApproverArn :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByApproverArn :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByApproverArn = OpsItemFilterKey' "ChangeRequestByApproverArn"

pattern OpsItemFilterKey_ChangeRequestByApproverName :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByApproverName :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByApproverName :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByApproverName = OpsItemFilterKey' "ChangeRequestByApproverName"

pattern OpsItemFilterKey_ChangeRequestByRequesterArn :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByRequesterArn :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByRequesterArn :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByRequesterArn = OpsItemFilterKey' "ChangeRequestByRequesterArn"

pattern OpsItemFilterKey_ChangeRequestByRequesterName :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByRequesterName :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByRequesterName :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByRequesterName = OpsItemFilterKey' "ChangeRequestByRequesterName"

pattern OpsItemFilterKey_ChangeRequestByTargetsResourceGroup :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByTargetsResourceGroup :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByTargetsResourceGroup :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByTargetsResourceGroup = OpsItemFilterKey' "ChangeRequestByTargetsResourceGroup"

pattern OpsItemFilterKey_ChangeRequestByTemplate :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ChangeRequestByTemplate :: OpsItemFilterKey
$mOpsItemFilterKey_ChangeRequestByTemplate :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ChangeRequestByTemplate = OpsItemFilterKey' "ChangeRequestByTemplate"

pattern OpsItemFilterKey_CreatedBy :: OpsItemFilterKey
pattern $bOpsItemFilterKey_CreatedBy :: OpsItemFilterKey
$mOpsItemFilterKey_CreatedBy :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_CreatedBy = OpsItemFilterKey' "CreatedBy"

pattern OpsItemFilterKey_CreatedTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_CreatedTime :: OpsItemFilterKey
$mOpsItemFilterKey_CreatedTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_CreatedTime = OpsItemFilterKey' "CreatedTime"

pattern OpsItemFilterKey_InsightByType :: OpsItemFilterKey
pattern $bOpsItemFilterKey_InsightByType :: OpsItemFilterKey
$mOpsItemFilterKey_InsightByType :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_InsightByType = OpsItemFilterKey' "InsightByType"

pattern OpsItemFilterKey_LastModifiedTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_LastModifiedTime :: OpsItemFilterKey
$mOpsItemFilterKey_LastModifiedTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_LastModifiedTime = OpsItemFilterKey' "LastModifiedTime"

pattern OpsItemFilterKey_OperationalData :: OpsItemFilterKey
pattern $bOpsItemFilterKey_OperationalData :: OpsItemFilterKey
$mOpsItemFilterKey_OperationalData :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_OperationalData = OpsItemFilterKey' "OperationalData"

pattern OpsItemFilterKey_OperationalDataKey :: OpsItemFilterKey
pattern $bOpsItemFilterKey_OperationalDataKey :: OpsItemFilterKey
$mOpsItemFilterKey_OperationalDataKey :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_OperationalDataKey = OpsItemFilterKey' "OperationalDataKey"

pattern OpsItemFilterKey_OperationalDataValue :: OpsItemFilterKey
pattern $bOpsItemFilterKey_OperationalDataValue :: OpsItemFilterKey
$mOpsItemFilterKey_OperationalDataValue :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_OperationalDataValue = OpsItemFilterKey' "OperationalDataValue"

pattern OpsItemFilterKey_OpsItemId :: OpsItemFilterKey
pattern $bOpsItemFilterKey_OpsItemId :: OpsItemFilterKey
$mOpsItemFilterKey_OpsItemId :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_OpsItemId = OpsItemFilterKey' "OpsItemId"

pattern OpsItemFilterKey_OpsItemType :: OpsItemFilterKey
pattern $bOpsItemFilterKey_OpsItemType :: OpsItemFilterKey
$mOpsItemFilterKey_OpsItemType :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_OpsItemType = OpsItemFilterKey' "OpsItemType"

pattern OpsItemFilterKey_PlannedEndTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_PlannedEndTime :: OpsItemFilterKey
$mOpsItemFilterKey_PlannedEndTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_PlannedEndTime = OpsItemFilterKey' "PlannedEndTime"

pattern OpsItemFilterKey_PlannedStartTime :: OpsItemFilterKey
pattern $bOpsItemFilterKey_PlannedStartTime :: OpsItemFilterKey
$mOpsItemFilterKey_PlannedStartTime :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_PlannedStartTime = OpsItemFilterKey' "PlannedStartTime"

pattern OpsItemFilterKey_Priority :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Priority :: OpsItemFilterKey
$mOpsItemFilterKey_Priority :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Priority = OpsItemFilterKey' "Priority"

pattern OpsItemFilterKey_ResourceId :: OpsItemFilterKey
pattern $bOpsItemFilterKey_ResourceId :: OpsItemFilterKey
$mOpsItemFilterKey_ResourceId :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_ResourceId = OpsItemFilterKey' "ResourceId"

pattern OpsItemFilterKey_Severity :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Severity :: OpsItemFilterKey
$mOpsItemFilterKey_Severity :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Severity = OpsItemFilterKey' "Severity"

pattern OpsItemFilterKey_Source :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Source :: OpsItemFilterKey
$mOpsItemFilterKey_Source :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Source = OpsItemFilterKey' "Source"

pattern OpsItemFilterKey_Status :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Status :: OpsItemFilterKey
$mOpsItemFilterKey_Status :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Status = OpsItemFilterKey' "Status"

pattern OpsItemFilterKey_Title :: OpsItemFilterKey
pattern $bOpsItemFilterKey_Title :: OpsItemFilterKey
$mOpsItemFilterKey_Title :: forall {r}. OpsItemFilterKey -> ((# #) -> r) -> ((# #) -> r) -> r
OpsItemFilterKey_Title = OpsItemFilterKey' "Title"

{-# COMPLETE
  OpsItemFilterKey_AccountId,
  OpsItemFilterKey_ActualEndTime,
  OpsItemFilterKey_ActualStartTime,
  OpsItemFilterKey_AutomationId,
  OpsItemFilterKey_Category,
  OpsItemFilterKey_ChangeRequestByApproverArn,
  OpsItemFilterKey_ChangeRequestByApproverName,
  OpsItemFilterKey_ChangeRequestByRequesterArn,
  OpsItemFilterKey_ChangeRequestByRequesterName,
  OpsItemFilterKey_ChangeRequestByTargetsResourceGroup,
  OpsItemFilterKey_ChangeRequestByTemplate,
  OpsItemFilterKey_CreatedBy,
  OpsItemFilterKey_CreatedTime,
  OpsItemFilterKey_InsightByType,
  OpsItemFilterKey_LastModifiedTime,
  OpsItemFilterKey_OperationalData,
  OpsItemFilterKey_OperationalDataKey,
  OpsItemFilterKey_OperationalDataValue,
  OpsItemFilterKey_OpsItemId,
  OpsItemFilterKey_OpsItemType,
  OpsItemFilterKey_PlannedEndTime,
  OpsItemFilterKey_PlannedStartTime,
  OpsItemFilterKey_Priority,
  OpsItemFilterKey_ResourceId,
  OpsItemFilterKey_Severity,
  OpsItemFilterKey_Source,
  OpsItemFilterKey_Status,
  OpsItemFilterKey_Title,
  OpsItemFilterKey'
  #-}