{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.StorageGateway.CreateSnapshot
(
CreateSnapshot (..),
newCreateSnapshot,
createSnapshot_tags,
createSnapshot_volumeARN,
createSnapshot_snapshotDescription,
CreateSnapshotResponse (..),
newCreateSnapshotResponse,
createSnapshotResponse_volumeARN,
createSnapshotResponse_snapshotId,
createSnapshotResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.StorageGateway.Types
data CreateSnapshot = CreateSnapshot'
{
CreateSnapshot -> Maybe [Tag]
tags :: Prelude.Maybe [Tag],
CreateSnapshot -> Text
volumeARN :: Prelude.Text,
CreateSnapshot -> Text
snapshotDescription :: Prelude.Text
}
deriving (CreateSnapshot -> CreateSnapshot -> Bool
(CreateSnapshot -> CreateSnapshot -> Bool)
-> (CreateSnapshot -> CreateSnapshot -> Bool) -> Eq CreateSnapshot
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateSnapshot -> CreateSnapshot -> Bool
$c/= :: CreateSnapshot -> CreateSnapshot -> Bool
== :: CreateSnapshot -> CreateSnapshot -> Bool
$c== :: CreateSnapshot -> CreateSnapshot -> Bool
Prelude.Eq, ReadPrec [CreateSnapshot]
ReadPrec CreateSnapshot
Int -> ReadS CreateSnapshot
ReadS [CreateSnapshot]
(Int -> ReadS CreateSnapshot)
-> ReadS [CreateSnapshot]
-> ReadPrec CreateSnapshot
-> ReadPrec [CreateSnapshot]
-> Read CreateSnapshot
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateSnapshot]
$creadListPrec :: ReadPrec [CreateSnapshot]
readPrec :: ReadPrec CreateSnapshot
$creadPrec :: ReadPrec CreateSnapshot
readList :: ReadS [CreateSnapshot]
$creadList :: ReadS [CreateSnapshot]
readsPrec :: Int -> ReadS CreateSnapshot
$creadsPrec :: Int -> ReadS CreateSnapshot
Prelude.Read, Int -> CreateSnapshot -> ShowS
[CreateSnapshot] -> ShowS
CreateSnapshot -> String
(Int -> CreateSnapshot -> ShowS)
-> (CreateSnapshot -> String)
-> ([CreateSnapshot] -> ShowS)
-> Show CreateSnapshot
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateSnapshot] -> ShowS
$cshowList :: [CreateSnapshot] -> ShowS
show :: CreateSnapshot -> String
$cshow :: CreateSnapshot -> String
showsPrec :: Int -> CreateSnapshot -> ShowS
$cshowsPrec :: Int -> CreateSnapshot -> ShowS
Prelude.Show, (forall x. CreateSnapshot -> Rep CreateSnapshot x)
-> (forall x. Rep CreateSnapshot x -> CreateSnapshot)
-> Generic CreateSnapshot
forall x. Rep CreateSnapshot x -> CreateSnapshot
forall x. CreateSnapshot -> Rep CreateSnapshot x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateSnapshot x -> CreateSnapshot
$cfrom :: forall x. CreateSnapshot -> Rep CreateSnapshot x
Prelude.Generic)
newCreateSnapshot ::
Prelude.Text ->
Prelude.Text ->
CreateSnapshot
newCreateSnapshot :: Text -> Text -> CreateSnapshot
newCreateSnapshot Text
pVolumeARN_ Text
pSnapshotDescription_ =
CreateSnapshot' :: Maybe [Tag] -> Text -> Text -> CreateSnapshot
CreateSnapshot'
{ $sel:tags:CreateSnapshot' :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
$sel:volumeARN:CreateSnapshot' :: Text
volumeARN = Text
pVolumeARN_,
$sel:snapshotDescription:CreateSnapshot' :: Text
snapshotDescription = Text
pSnapshotDescription_
}
createSnapshot_tags :: Lens.Lens' CreateSnapshot (Prelude.Maybe [Tag])
createSnapshot_tags :: (Maybe [Tag] -> f (Maybe [Tag]))
-> CreateSnapshot -> f CreateSnapshot
createSnapshot_tags = (CreateSnapshot -> Maybe [Tag])
-> (CreateSnapshot -> Maybe [Tag] -> CreateSnapshot)
-> Lens CreateSnapshot CreateSnapshot (Maybe [Tag]) (Maybe [Tag])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshot' {Maybe [Tag]
tags :: Maybe [Tag]
$sel:tags:CreateSnapshot' :: CreateSnapshot -> Maybe [Tag]
tags} -> Maybe [Tag]
tags) (\s :: CreateSnapshot
s@CreateSnapshot' {} Maybe [Tag]
a -> CreateSnapshot
s {$sel:tags:CreateSnapshot' :: Maybe [Tag]
tags = Maybe [Tag]
a} :: CreateSnapshot) ((Maybe [Tag] -> f (Maybe [Tag]))
-> CreateSnapshot -> f CreateSnapshot)
-> ((Maybe [Tag] -> f (Maybe [Tag]))
-> Maybe [Tag] -> f (Maybe [Tag]))
-> (Maybe [Tag] -> f (Maybe [Tag]))
-> CreateSnapshot
-> f CreateSnapshot
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Tag] [Tag] [Tag] [Tag]
-> Iso (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Tag] [Tag] [Tag] [Tag]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
createSnapshot_volumeARN :: Lens.Lens' CreateSnapshot Prelude.Text
createSnapshot_volumeARN :: (Text -> f Text) -> CreateSnapshot -> f CreateSnapshot
createSnapshot_volumeARN = (CreateSnapshot -> Text)
-> (CreateSnapshot -> Text -> CreateSnapshot)
-> Lens CreateSnapshot CreateSnapshot Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshot' {Text
volumeARN :: Text
$sel:volumeARN:CreateSnapshot' :: CreateSnapshot -> Text
volumeARN} -> Text
volumeARN) (\s :: CreateSnapshot
s@CreateSnapshot' {} Text
a -> CreateSnapshot
s {$sel:volumeARN:CreateSnapshot' :: Text
volumeARN = Text
a} :: CreateSnapshot)
createSnapshot_snapshotDescription :: Lens.Lens' CreateSnapshot Prelude.Text
createSnapshot_snapshotDescription :: (Text -> f Text) -> CreateSnapshot -> f CreateSnapshot
createSnapshot_snapshotDescription = (CreateSnapshot -> Text)
-> (CreateSnapshot -> Text -> CreateSnapshot)
-> Lens CreateSnapshot CreateSnapshot Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshot' {Text
snapshotDescription :: Text
$sel:snapshotDescription:CreateSnapshot' :: CreateSnapshot -> Text
snapshotDescription} -> Text
snapshotDescription) (\s :: CreateSnapshot
s@CreateSnapshot' {} Text
a -> CreateSnapshot
s {$sel:snapshotDescription:CreateSnapshot' :: Text
snapshotDescription = Text
a} :: CreateSnapshot)
instance Core.AWSRequest CreateSnapshot where
type
AWSResponse CreateSnapshot =
CreateSnapshotResponse
request :: CreateSnapshot -> Request CreateSnapshot
request = Service -> CreateSnapshot -> Request CreateSnapshot
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy CreateSnapshot
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateSnapshot)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse CreateSnapshot))
-> Logger
-> Service
-> Proxy CreateSnapshot
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateSnapshot)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe Text -> Maybe Text -> Int -> CreateSnapshotResponse
CreateSnapshotResponse'
(Maybe Text -> Maybe Text -> Int -> CreateSnapshotResponse)
-> Either String (Maybe Text)
-> Either String (Maybe Text -> Int -> CreateSnapshotResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"VolumeARN")
Either String (Maybe Text -> Int -> CreateSnapshotResponse)
-> Either String (Maybe Text)
-> Either String (Int -> CreateSnapshotResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"SnapshotId")
Either String (Int -> CreateSnapshotResponse)
-> Either String Int -> Either String CreateSnapshotResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable CreateSnapshot
instance Prelude.NFData CreateSnapshot
instance Core.ToHeaders CreateSnapshot where
toHeaders :: CreateSnapshot -> ResponseHeaders
toHeaders =
ResponseHeaders -> CreateSnapshot -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"StorageGateway_20130630.CreateSnapshot" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON CreateSnapshot where
toJSON :: CreateSnapshot -> Value
toJSON CreateSnapshot' {Maybe [Tag]
Text
snapshotDescription :: Text
volumeARN :: Text
tags :: Maybe [Tag]
$sel:snapshotDescription:CreateSnapshot' :: CreateSnapshot -> Text
$sel:volumeARN:CreateSnapshot' :: CreateSnapshot -> Text
$sel:tags:CreateSnapshot' :: CreateSnapshot -> Maybe [Tag]
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"Tags" Text -> [Tag] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) ([Tag] -> Pair) -> Maybe [Tag] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"VolumeARN" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
volumeARN),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"SnapshotDescription" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
snapshotDescription)
]
)
instance Core.ToPath CreateSnapshot where
toPath :: CreateSnapshot -> ByteString
toPath = ByteString -> CreateSnapshot -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreateSnapshot where
toQuery :: CreateSnapshot -> QueryString
toQuery = QueryString -> CreateSnapshot -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data CreateSnapshotResponse = CreateSnapshotResponse'
{
CreateSnapshotResponse -> Maybe Text
volumeARN :: Prelude.Maybe Prelude.Text,
CreateSnapshotResponse -> Maybe Text
snapshotId :: Prelude.Maybe Prelude.Text,
CreateSnapshotResponse -> Int
httpStatus :: Prelude.Int
}
deriving (CreateSnapshotResponse -> CreateSnapshotResponse -> Bool
(CreateSnapshotResponse -> CreateSnapshotResponse -> Bool)
-> (CreateSnapshotResponse -> CreateSnapshotResponse -> Bool)
-> Eq CreateSnapshotResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateSnapshotResponse -> CreateSnapshotResponse -> Bool
$c/= :: CreateSnapshotResponse -> CreateSnapshotResponse -> Bool
== :: CreateSnapshotResponse -> CreateSnapshotResponse -> Bool
$c== :: CreateSnapshotResponse -> CreateSnapshotResponse -> Bool
Prelude.Eq, ReadPrec [CreateSnapshotResponse]
ReadPrec CreateSnapshotResponse
Int -> ReadS CreateSnapshotResponse
ReadS [CreateSnapshotResponse]
(Int -> ReadS CreateSnapshotResponse)
-> ReadS [CreateSnapshotResponse]
-> ReadPrec CreateSnapshotResponse
-> ReadPrec [CreateSnapshotResponse]
-> Read CreateSnapshotResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateSnapshotResponse]
$creadListPrec :: ReadPrec [CreateSnapshotResponse]
readPrec :: ReadPrec CreateSnapshotResponse
$creadPrec :: ReadPrec CreateSnapshotResponse
readList :: ReadS [CreateSnapshotResponse]
$creadList :: ReadS [CreateSnapshotResponse]
readsPrec :: Int -> ReadS CreateSnapshotResponse
$creadsPrec :: Int -> ReadS CreateSnapshotResponse
Prelude.Read, Int -> CreateSnapshotResponse -> ShowS
[CreateSnapshotResponse] -> ShowS
CreateSnapshotResponse -> String
(Int -> CreateSnapshotResponse -> ShowS)
-> (CreateSnapshotResponse -> String)
-> ([CreateSnapshotResponse] -> ShowS)
-> Show CreateSnapshotResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateSnapshotResponse] -> ShowS
$cshowList :: [CreateSnapshotResponse] -> ShowS
show :: CreateSnapshotResponse -> String
$cshow :: CreateSnapshotResponse -> String
showsPrec :: Int -> CreateSnapshotResponse -> ShowS
$cshowsPrec :: Int -> CreateSnapshotResponse -> ShowS
Prelude.Show, (forall x. CreateSnapshotResponse -> Rep CreateSnapshotResponse x)
-> (forall x.
Rep CreateSnapshotResponse x -> CreateSnapshotResponse)
-> Generic CreateSnapshotResponse
forall x. Rep CreateSnapshotResponse x -> CreateSnapshotResponse
forall x. CreateSnapshotResponse -> Rep CreateSnapshotResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateSnapshotResponse x -> CreateSnapshotResponse
$cfrom :: forall x. CreateSnapshotResponse -> Rep CreateSnapshotResponse x
Prelude.Generic)
newCreateSnapshotResponse ::
Prelude.Int ->
CreateSnapshotResponse
newCreateSnapshotResponse :: Int -> CreateSnapshotResponse
newCreateSnapshotResponse Int
pHttpStatus_ =
CreateSnapshotResponse' :: Maybe Text -> Maybe Text -> Int -> CreateSnapshotResponse
CreateSnapshotResponse'
{ $sel:volumeARN:CreateSnapshotResponse' :: Maybe Text
volumeARN =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:snapshotId:CreateSnapshotResponse' :: Maybe Text
snapshotId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreateSnapshotResponse' :: Int
httpStatus = Int
pHttpStatus_
}
createSnapshotResponse_volumeARN :: Lens.Lens' CreateSnapshotResponse (Prelude.Maybe Prelude.Text)
createSnapshotResponse_volumeARN :: (Maybe Text -> f (Maybe Text))
-> CreateSnapshotResponse -> f CreateSnapshotResponse
createSnapshotResponse_volumeARN = (CreateSnapshotResponse -> Maybe Text)
-> (CreateSnapshotResponse -> Maybe Text -> CreateSnapshotResponse)
-> Lens
CreateSnapshotResponse
CreateSnapshotResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshotResponse' {Maybe Text
volumeARN :: Maybe Text
$sel:volumeARN:CreateSnapshotResponse' :: CreateSnapshotResponse -> Maybe Text
volumeARN} -> Maybe Text
volumeARN) (\s :: CreateSnapshotResponse
s@CreateSnapshotResponse' {} Maybe Text
a -> CreateSnapshotResponse
s {$sel:volumeARN:CreateSnapshotResponse' :: Maybe Text
volumeARN = Maybe Text
a} :: CreateSnapshotResponse)
createSnapshotResponse_snapshotId :: Lens.Lens' CreateSnapshotResponse (Prelude.Maybe Prelude.Text)
createSnapshotResponse_snapshotId :: (Maybe Text -> f (Maybe Text))
-> CreateSnapshotResponse -> f CreateSnapshotResponse
createSnapshotResponse_snapshotId = (CreateSnapshotResponse -> Maybe Text)
-> (CreateSnapshotResponse -> Maybe Text -> CreateSnapshotResponse)
-> Lens
CreateSnapshotResponse
CreateSnapshotResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshotResponse' {Maybe Text
snapshotId :: Maybe Text
$sel:snapshotId:CreateSnapshotResponse' :: CreateSnapshotResponse -> Maybe Text
snapshotId} -> Maybe Text
snapshotId) (\s :: CreateSnapshotResponse
s@CreateSnapshotResponse' {} Maybe Text
a -> CreateSnapshotResponse
s {$sel:snapshotId:CreateSnapshotResponse' :: Maybe Text
snapshotId = Maybe Text
a} :: CreateSnapshotResponse)
createSnapshotResponse_httpStatus :: Lens.Lens' CreateSnapshotResponse Prelude.Int
createSnapshotResponse_httpStatus :: (Int -> f Int)
-> CreateSnapshotResponse -> f CreateSnapshotResponse
createSnapshotResponse_httpStatus = (CreateSnapshotResponse -> Int)
-> (CreateSnapshotResponse -> Int -> CreateSnapshotResponse)
-> Lens CreateSnapshotResponse CreateSnapshotResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateSnapshotResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreateSnapshotResponse' :: CreateSnapshotResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreateSnapshotResponse
s@CreateSnapshotResponse' {} Int
a -> CreateSnapshotResponse
s {$sel:httpStatus:CreateSnapshotResponse' :: Int
httpStatus = Int
a} :: CreateSnapshotResponse)
instance Prelude.NFData CreateSnapshotResponse