{-# 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.Kafka.Types.ClusterState
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Kafka.Types.ClusterState
  ( ClusterState
      ( ..,
        ClusterState_ACTIVE,
        ClusterState_CREATING,
        ClusterState_DELETING,
        ClusterState_FAILED,
        ClusterState_HEALING,
        ClusterState_MAINTENANCE,
        ClusterState_REBOOTING_BROKER,
        ClusterState_UPDATING
      ),
  )
where

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

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

pattern ClusterState_ACTIVE :: ClusterState
pattern $bClusterState_ACTIVE :: ClusterState
$mClusterState_ACTIVE :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_ACTIVE = ClusterState' "ACTIVE"

pattern ClusterState_CREATING :: ClusterState
pattern $bClusterState_CREATING :: ClusterState
$mClusterState_CREATING :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_CREATING = ClusterState' "CREATING"

pattern ClusterState_DELETING :: ClusterState
pattern $bClusterState_DELETING :: ClusterState
$mClusterState_DELETING :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_DELETING = ClusterState' "DELETING"

pattern ClusterState_FAILED :: ClusterState
pattern $bClusterState_FAILED :: ClusterState
$mClusterState_FAILED :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_FAILED = ClusterState' "FAILED"

pattern ClusterState_HEALING :: ClusterState
pattern $bClusterState_HEALING :: ClusterState
$mClusterState_HEALING :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_HEALING = ClusterState' "HEALING"

pattern ClusterState_MAINTENANCE :: ClusterState
pattern $bClusterState_MAINTENANCE :: ClusterState
$mClusterState_MAINTENANCE :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_MAINTENANCE = ClusterState' "MAINTENANCE"

pattern ClusterState_REBOOTING_BROKER :: ClusterState
pattern $bClusterState_REBOOTING_BROKER :: ClusterState
$mClusterState_REBOOTING_BROKER :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_REBOOTING_BROKER = ClusterState' "REBOOTING_BROKER"

pattern ClusterState_UPDATING :: ClusterState
pattern $bClusterState_UPDATING :: ClusterState
$mClusterState_UPDATING :: forall r. ClusterState -> (Void# -> r) -> (Void# -> r) -> r
ClusterState_UPDATING = ClusterState' "UPDATING"

{-# COMPLETE
  ClusterState_ACTIVE,
  ClusterState_CREATING,
  ClusterState_DELETING,
  ClusterState_FAILED,
  ClusterState_HEALING,
  ClusterState_MAINTENANCE,
  ClusterState_REBOOTING_BROKER,
  ClusterState_UPDATING,
  ClusterState'
  #-}