{-# 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 #-}

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

-- |
-- Module      : Amazonka.AppStream.UpdateImagePermissions
-- 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)
--
-- Adds or updates permissions for the specified private image.
module Amazonka.AppStream.UpdateImagePermissions
  ( -- * Creating a Request
    UpdateImagePermissions (..),
    newUpdateImagePermissions,

    -- * Request Lenses
    updateImagePermissions_name,
    updateImagePermissions_sharedAccountId,
    updateImagePermissions_imagePermissions,

    -- * Destructuring the Response
    UpdateImagePermissionsResponse (..),
    newUpdateImagePermissionsResponse,

    -- * Response Lenses
    updateImagePermissionsResponse_httpStatus,
  )
where

import Amazonka.AppStream.Types
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

-- | /See:/ 'newUpdateImagePermissions' smart constructor.
data UpdateImagePermissions = UpdateImagePermissions'
  { -- | The name of the private image.
    UpdateImagePermissions -> Text
name :: Prelude.Text,
    -- | The 12-digit identifier of the AWS account for which you want add or
    -- update image permissions.
    UpdateImagePermissions -> Text
sharedAccountId :: Prelude.Text,
    -- | The permissions for the image.
    UpdateImagePermissions -> ImagePermissions
imagePermissions :: ImagePermissions
  }
  deriving (UpdateImagePermissions -> UpdateImagePermissions -> Bool
(UpdateImagePermissions -> UpdateImagePermissions -> Bool)
-> (UpdateImagePermissions -> UpdateImagePermissions -> Bool)
-> Eq UpdateImagePermissions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateImagePermissions -> UpdateImagePermissions -> Bool
$c/= :: UpdateImagePermissions -> UpdateImagePermissions -> Bool
== :: UpdateImagePermissions -> UpdateImagePermissions -> Bool
$c== :: UpdateImagePermissions -> UpdateImagePermissions -> Bool
Prelude.Eq, ReadPrec [UpdateImagePermissions]
ReadPrec UpdateImagePermissions
Int -> ReadS UpdateImagePermissions
ReadS [UpdateImagePermissions]
(Int -> ReadS UpdateImagePermissions)
-> ReadS [UpdateImagePermissions]
-> ReadPrec UpdateImagePermissions
-> ReadPrec [UpdateImagePermissions]
-> Read UpdateImagePermissions
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateImagePermissions]
$creadListPrec :: ReadPrec [UpdateImagePermissions]
readPrec :: ReadPrec UpdateImagePermissions
$creadPrec :: ReadPrec UpdateImagePermissions
readList :: ReadS [UpdateImagePermissions]
$creadList :: ReadS [UpdateImagePermissions]
readsPrec :: Int -> ReadS UpdateImagePermissions
$creadsPrec :: Int -> ReadS UpdateImagePermissions
Prelude.Read, Int -> UpdateImagePermissions -> ShowS
[UpdateImagePermissions] -> ShowS
UpdateImagePermissions -> String
(Int -> UpdateImagePermissions -> ShowS)
-> (UpdateImagePermissions -> String)
-> ([UpdateImagePermissions] -> ShowS)
-> Show UpdateImagePermissions
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateImagePermissions] -> ShowS
$cshowList :: [UpdateImagePermissions] -> ShowS
show :: UpdateImagePermissions -> String
$cshow :: UpdateImagePermissions -> String
showsPrec :: Int -> UpdateImagePermissions -> ShowS
$cshowsPrec :: Int -> UpdateImagePermissions -> ShowS
Prelude.Show, (forall x. UpdateImagePermissions -> Rep UpdateImagePermissions x)
-> (forall x.
    Rep UpdateImagePermissions x -> UpdateImagePermissions)
-> Generic UpdateImagePermissions
forall x. Rep UpdateImagePermissions x -> UpdateImagePermissions
forall x. UpdateImagePermissions -> Rep UpdateImagePermissions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateImagePermissions x -> UpdateImagePermissions
$cfrom :: forall x. UpdateImagePermissions -> Rep UpdateImagePermissions x
Prelude.Generic)

-- |
-- Create a value of 'UpdateImagePermissions' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'name', 'updateImagePermissions_name' - The name of the private image.
--
-- 'sharedAccountId', 'updateImagePermissions_sharedAccountId' - The 12-digit identifier of the AWS account for which you want add or
-- update image permissions.
--
-- 'imagePermissions', 'updateImagePermissions_imagePermissions' - The permissions for the image.
newUpdateImagePermissions ::
  -- | 'name'
  Prelude.Text ->
  -- | 'sharedAccountId'
  Prelude.Text ->
  -- | 'imagePermissions'
  ImagePermissions ->
  UpdateImagePermissions
newUpdateImagePermissions :: Text -> Text -> ImagePermissions -> UpdateImagePermissions
newUpdateImagePermissions
  Text
pName_
  Text
pSharedAccountId_
  ImagePermissions
pImagePermissions_ =
    UpdateImagePermissions' :: Text -> Text -> ImagePermissions -> UpdateImagePermissions
UpdateImagePermissions'
      { $sel:name:UpdateImagePermissions' :: Text
name = Text
pName_,
        $sel:sharedAccountId:UpdateImagePermissions' :: Text
sharedAccountId = Text
pSharedAccountId_,
        $sel:imagePermissions:UpdateImagePermissions' :: ImagePermissions
imagePermissions = ImagePermissions
pImagePermissions_
      }

-- | The name of the private image.
updateImagePermissions_name :: Lens.Lens' UpdateImagePermissions Prelude.Text
updateImagePermissions_name :: (Text -> f Text)
-> UpdateImagePermissions -> f UpdateImagePermissions
updateImagePermissions_name = (UpdateImagePermissions -> Text)
-> (UpdateImagePermissions -> Text -> UpdateImagePermissions)
-> Lens UpdateImagePermissions UpdateImagePermissions Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateImagePermissions' {Text
name :: Text
$sel:name:UpdateImagePermissions' :: UpdateImagePermissions -> Text
name} -> Text
name) (\s :: UpdateImagePermissions
s@UpdateImagePermissions' {} Text
a -> UpdateImagePermissions
s {$sel:name:UpdateImagePermissions' :: Text
name = Text
a} :: UpdateImagePermissions)

-- | The 12-digit identifier of the AWS account for which you want add or
-- update image permissions.
updateImagePermissions_sharedAccountId :: Lens.Lens' UpdateImagePermissions Prelude.Text
updateImagePermissions_sharedAccountId :: (Text -> f Text)
-> UpdateImagePermissions -> f UpdateImagePermissions
updateImagePermissions_sharedAccountId = (UpdateImagePermissions -> Text)
-> (UpdateImagePermissions -> Text -> UpdateImagePermissions)
-> Lens UpdateImagePermissions UpdateImagePermissions Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateImagePermissions' {Text
sharedAccountId :: Text
$sel:sharedAccountId:UpdateImagePermissions' :: UpdateImagePermissions -> Text
sharedAccountId} -> Text
sharedAccountId) (\s :: UpdateImagePermissions
s@UpdateImagePermissions' {} Text
a -> UpdateImagePermissions
s {$sel:sharedAccountId:UpdateImagePermissions' :: Text
sharedAccountId = Text
a} :: UpdateImagePermissions)

-- | The permissions for the image.
updateImagePermissions_imagePermissions :: Lens.Lens' UpdateImagePermissions ImagePermissions
updateImagePermissions_imagePermissions :: (ImagePermissions -> f ImagePermissions)
-> UpdateImagePermissions -> f UpdateImagePermissions
updateImagePermissions_imagePermissions = (UpdateImagePermissions -> ImagePermissions)
-> (UpdateImagePermissions
    -> ImagePermissions -> UpdateImagePermissions)
-> Lens
     UpdateImagePermissions
     UpdateImagePermissions
     ImagePermissions
     ImagePermissions
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateImagePermissions' {ImagePermissions
imagePermissions :: ImagePermissions
$sel:imagePermissions:UpdateImagePermissions' :: UpdateImagePermissions -> ImagePermissions
imagePermissions} -> ImagePermissions
imagePermissions) (\s :: UpdateImagePermissions
s@UpdateImagePermissions' {} ImagePermissions
a -> UpdateImagePermissions
s {$sel:imagePermissions:UpdateImagePermissions' :: ImagePermissions
imagePermissions = ImagePermissions
a} :: UpdateImagePermissions)

instance Core.AWSRequest UpdateImagePermissions where
  type
    AWSResponse UpdateImagePermissions =
      UpdateImagePermissionsResponse
  request :: UpdateImagePermissions -> Request UpdateImagePermissions
request = Service -> UpdateImagePermissions -> Request UpdateImagePermissions
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy UpdateImagePermissions
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse UpdateImagePermissions)))
response =
    (Int
 -> ResponseHeaders
 -> ()
 -> Either String (AWSResponse UpdateImagePermissions))
-> Logger
-> Service
-> Proxy UpdateImagePermissions
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse UpdateImagePermissions)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> UpdateImagePermissionsResponse
UpdateImagePermissionsResponse'
            (Int -> UpdateImagePermissionsResponse)
-> Either String Int
-> Either String UpdateImagePermissionsResponse
forall (f :: * -> *) a b. Functor 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 UpdateImagePermissions

instance Prelude.NFData UpdateImagePermissions

instance Core.ToHeaders UpdateImagePermissions where
  toHeaders :: UpdateImagePermissions -> ResponseHeaders
toHeaders =
    ResponseHeaders -> UpdateImagePermissions -> 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
"PhotonAdminProxyService.UpdateImagePermissions" ::
                          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 UpdateImagePermissions where
  toJSON :: UpdateImagePermissions -> Value
toJSON UpdateImagePermissions' {Text
ImagePermissions
imagePermissions :: ImagePermissions
sharedAccountId :: Text
name :: Text
$sel:imagePermissions:UpdateImagePermissions' :: UpdateImagePermissions -> ImagePermissions
$sel:sharedAccountId:UpdateImagePermissions' :: UpdateImagePermissions -> Text
$sel:name:UpdateImagePermissions' :: UpdateImagePermissions -> Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
name),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"SharedAccountId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
sharedAccountId),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"ImagePermissions" Text -> ImagePermissions -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= ImagePermissions
imagePermissions)
          ]
      )

instance Core.ToPath UpdateImagePermissions where
  toPath :: UpdateImagePermissions -> ByteString
toPath = ByteString -> UpdateImagePermissions -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery UpdateImagePermissions where
  toQuery :: UpdateImagePermissions -> QueryString
toQuery = QueryString -> UpdateImagePermissions -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newUpdateImagePermissionsResponse' smart constructor.
data UpdateImagePermissionsResponse = UpdateImagePermissionsResponse'
  { -- | The response's http status code.
    UpdateImagePermissionsResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateImagePermissionsResponse
-> UpdateImagePermissionsResponse -> Bool
(UpdateImagePermissionsResponse
 -> UpdateImagePermissionsResponse -> Bool)
-> (UpdateImagePermissionsResponse
    -> UpdateImagePermissionsResponse -> Bool)
-> Eq UpdateImagePermissionsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateImagePermissionsResponse
-> UpdateImagePermissionsResponse -> Bool
$c/= :: UpdateImagePermissionsResponse
-> UpdateImagePermissionsResponse -> Bool
== :: UpdateImagePermissionsResponse
-> UpdateImagePermissionsResponse -> Bool
$c== :: UpdateImagePermissionsResponse
-> UpdateImagePermissionsResponse -> Bool
Prelude.Eq, ReadPrec [UpdateImagePermissionsResponse]
ReadPrec UpdateImagePermissionsResponse
Int -> ReadS UpdateImagePermissionsResponse
ReadS [UpdateImagePermissionsResponse]
(Int -> ReadS UpdateImagePermissionsResponse)
-> ReadS [UpdateImagePermissionsResponse]
-> ReadPrec UpdateImagePermissionsResponse
-> ReadPrec [UpdateImagePermissionsResponse]
-> Read UpdateImagePermissionsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateImagePermissionsResponse]
$creadListPrec :: ReadPrec [UpdateImagePermissionsResponse]
readPrec :: ReadPrec UpdateImagePermissionsResponse
$creadPrec :: ReadPrec UpdateImagePermissionsResponse
readList :: ReadS [UpdateImagePermissionsResponse]
$creadList :: ReadS [UpdateImagePermissionsResponse]
readsPrec :: Int -> ReadS UpdateImagePermissionsResponse
$creadsPrec :: Int -> ReadS UpdateImagePermissionsResponse
Prelude.Read, Int -> UpdateImagePermissionsResponse -> ShowS
[UpdateImagePermissionsResponse] -> ShowS
UpdateImagePermissionsResponse -> String
(Int -> UpdateImagePermissionsResponse -> ShowS)
-> (UpdateImagePermissionsResponse -> String)
-> ([UpdateImagePermissionsResponse] -> ShowS)
-> Show UpdateImagePermissionsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateImagePermissionsResponse] -> ShowS
$cshowList :: [UpdateImagePermissionsResponse] -> ShowS
show :: UpdateImagePermissionsResponse -> String
$cshow :: UpdateImagePermissionsResponse -> String
showsPrec :: Int -> UpdateImagePermissionsResponse -> ShowS
$cshowsPrec :: Int -> UpdateImagePermissionsResponse -> ShowS
Prelude.Show, (forall x.
 UpdateImagePermissionsResponse
 -> Rep UpdateImagePermissionsResponse x)
-> (forall x.
    Rep UpdateImagePermissionsResponse x
    -> UpdateImagePermissionsResponse)
-> Generic UpdateImagePermissionsResponse
forall x.
Rep UpdateImagePermissionsResponse x
-> UpdateImagePermissionsResponse
forall x.
UpdateImagePermissionsResponse
-> Rep UpdateImagePermissionsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateImagePermissionsResponse x
-> UpdateImagePermissionsResponse
$cfrom :: forall x.
UpdateImagePermissionsResponse
-> Rep UpdateImagePermissionsResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateImagePermissionsResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'updateImagePermissionsResponse_httpStatus' - The response's http status code.
newUpdateImagePermissionsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateImagePermissionsResponse
newUpdateImagePermissionsResponse :: Int -> UpdateImagePermissionsResponse
newUpdateImagePermissionsResponse Int
pHttpStatus_ =
  UpdateImagePermissionsResponse' :: Int -> UpdateImagePermissionsResponse
UpdateImagePermissionsResponse'
    { $sel:httpStatus:UpdateImagePermissionsResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
updateImagePermissionsResponse_httpStatus :: Lens.Lens' UpdateImagePermissionsResponse Prelude.Int
updateImagePermissionsResponse_httpStatus :: (Int -> f Int)
-> UpdateImagePermissionsResponse
-> f UpdateImagePermissionsResponse
updateImagePermissionsResponse_httpStatus = (UpdateImagePermissionsResponse -> Int)
-> (UpdateImagePermissionsResponse
    -> Int -> UpdateImagePermissionsResponse)
-> Lens
     UpdateImagePermissionsResponse
     UpdateImagePermissionsResponse
     Int
     Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateImagePermissionsResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateImagePermissionsResponse' :: UpdateImagePermissionsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateImagePermissionsResponse
s@UpdateImagePermissionsResponse' {} Int
a -> UpdateImagePermissionsResponse
s {$sel:httpStatus:UpdateImagePermissionsResponse' :: Int
httpStatus = Int
a} :: UpdateImagePermissionsResponse)

instance
  Prelude.NFData
    UpdateImagePermissionsResponse