{-# 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.SSM.DeleteAssociation
-- 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)
--
-- Disassociates the specified Amazon Web Services Systems Manager document
-- (SSM document) from the specified instance. If you created the
-- association by using the @Targets@ parameter, then you must delete the
-- association by using the association ID.
--
-- When you disassociate a document from an instance, it doesn\'t change
-- the configuration of the instance. To change the configuration state of
-- an instance after you disassociate a document, you must create a new
-- document with the desired configuration and associate it with the
-- instance.
module Amazonka.SSM.DeleteAssociation
  ( -- * Creating a Request
    DeleteAssociation (..),
    newDeleteAssociation,

    -- * Request Lenses
    deleteAssociation_associationId,
    deleteAssociation_instanceId,
    deleteAssociation_name,

    -- * Destructuring the Response
    DeleteAssociationResponse (..),
    newDeleteAssociationResponse,

    -- * Response Lenses
    deleteAssociationResponse_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.SSM.Types

-- | /See:/ 'newDeleteAssociation' smart constructor.
data DeleteAssociation = DeleteAssociation'
  { -- | The association ID that you want to delete.
    DeleteAssociation -> Maybe Text
associationId :: Prelude.Maybe Prelude.Text,
    -- | The instance ID.
    --
    -- @InstanceId@ has been deprecated. To specify an instance ID for an
    -- association, use the @Targets@ parameter. Requests that include the
    -- parameter @InstanceID@ with Systems Manager documents (SSM documents)
    -- that use schema version 2.0 or later will fail. In addition, if you use
    -- the parameter @InstanceId@, you can\'t use the parameters
    -- @AssociationName@, @DocumentVersion@, @MaxErrors@, @MaxConcurrency@,
    -- @OutputLocation@, or @ScheduleExpression@. To use these parameters, you
    -- must use the @Targets@ parameter.
    DeleteAssociation -> Maybe Text
instanceId :: Prelude.Maybe Prelude.Text,
    -- | The name of the SSM document.
    DeleteAssociation -> Maybe Text
name :: Prelude.Maybe Prelude.Text
  }
  deriving (DeleteAssociation -> DeleteAssociation -> Bool
(DeleteAssociation -> DeleteAssociation -> Bool)
-> (DeleteAssociation -> DeleteAssociation -> Bool)
-> Eq DeleteAssociation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAssociation -> DeleteAssociation -> Bool
$c/= :: DeleteAssociation -> DeleteAssociation -> Bool
== :: DeleteAssociation -> DeleteAssociation -> Bool
$c== :: DeleteAssociation -> DeleteAssociation -> Bool
Prelude.Eq, ReadPrec [DeleteAssociation]
ReadPrec DeleteAssociation
Int -> ReadS DeleteAssociation
ReadS [DeleteAssociation]
(Int -> ReadS DeleteAssociation)
-> ReadS [DeleteAssociation]
-> ReadPrec DeleteAssociation
-> ReadPrec [DeleteAssociation]
-> Read DeleteAssociation
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAssociation]
$creadListPrec :: ReadPrec [DeleteAssociation]
readPrec :: ReadPrec DeleteAssociation
$creadPrec :: ReadPrec DeleteAssociation
readList :: ReadS [DeleteAssociation]
$creadList :: ReadS [DeleteAssociation]
readsPrec :: Int -> ReadS DeleteAssociation
$creadsPrec :: Int -> ReadS DeleteAssociation
Prelude.Read, Int -> DeleteAssociation -> ShowS
[DeleteAssociation] -> ShowS
DeleteAssociation -> String
(Int -> DeleteAssociation -> ShowS)
-> (DeleteAssociation -> String)
-> ([DeleteAssociation] -> ShowS)
-> Show DeleteAssociation
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAssociation] -> ShowS
$cshowList :: [DeleteAssociation] -> ShowS
show :: DeleteAssociation -> String
$cshow :: DeleteAssociation -> String
showsPrec :: Int -> DeleteAssociation -> ShowS
$cshowsPrec :: Int -> DeleteAssociation -> ShowS
Prelude.Show, (forall x. DeleteAssociation -> Rep DeleteAssociation x)
-> (forall x. Rep DeleteAssociation x -> DeleteAssociation)
-> Generic DeleteAssociation
forall x. Rep DeleteAssociation x -> DeleteAssociation
forall x. DeleteAssociation -> Rep DeleteAssociation x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAssociation x -> DeleteAssociation
$cfrom :: forall x. DeleteAssociation -> Rep DeleteAssociation x
Prelude.Generic)

-- |
-- Create a value of 'DeleteAssociation' 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:
--
-- 'associationId', 'deleteAssociation_associationId' - The association ID that you want to delete.
--
-- 'instanceId', 'deleteAssociation_instanceId' - The instance ID.
--
-- @InstanceId@ has been deprecated. To specify an instance ID for an
-- association, use the @Targets@ parameter. Requests that include the
-- parameter @InstanceID@ with Systems Manager documents (SSM documents)
-- that use schema version 2.0 or later will fail. In addition, if you use
-- the parameter @InstanceId@, you can\'t use the parameters
-- @AssociationName@, @DocumentVersion@, @MaxErrors@, @MaxConcurrency@,
-- @OutputLocation@, or @ScheduleExpression@. To use these parameters, you
-- must use the @Targets@ parameter.
--
-- 'name', 'deleteAssociation_name' - The name of the SSM document.
newDeleteAssociation ::
  DeleteAssociation
newDeleteAssociation :: DeleteAssociation
newDeleteAssociation =
  DeleteAssociation' :: Maybe Text -> Maybe Text -> Maybe Text -> DeleteAssociation
DeleteAssociation'
    { $sel:associationId:DeleteAssociation' :: Maybe Text
associationId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:instanceId:DeleteAssociation' :: Maybe Text
instanceId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:name:DeleteAssociation' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing
    }

-- | The association ID that you want to delete.
deleteAssociation_associationId :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_associationId :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_associationId = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
     DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
associationId :: Maybe Text
$sel:associationId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
associationId} -> Maybe Text
associationId) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:associationId:DeleteAssociation' :: Maybe Text
associationId = Maybe Text
a} :: DeleteAssociation)

-- | The instance ID.
--
-- @InstanceId@ has been deprecated. To specify an instance ID for an
-- association, use the @Targets@ parameter. Requests that include the
-- parameter @InstanceID@ with Systems Manager documents (SSM documents)
-- that use schema version 2.0 or later will fail. In addition, if you use
-- the parameter @InstanceId@, you can\'t use the parameters
-- @AssociationName@, @DocumentVersion@, @MaxErrors@, @MaxConcurrency@,
-- @OutputLocation@, or @ScheduleExpression@. To use these parameters, you
-- must use the @Targets@ parameter.
deleteAssociation_instanceId :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_instanceId :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_instanceId = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
     DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
instanceId :: Maybe Text
$sel:instanceId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
instanceId} -> Maybe Text
instanceId) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:instanceId:DeleteAssociation' :: Maybe Text
instanceId = Maybe Text
a} :: DeleteAssociation)

-- | The name of the SSM document.
deleteAssociation_name :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_name :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_name = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
     DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
name :: Maybe Text
$sel:name:DeleteAssociation' :: DeleteAssociation -> Maybe Text
name} -> Maybe Text
name) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:name:DeleteAssociation' :: Maybe Text
name = Maybe Text
a} :: DeleteAssociation)

instance Core.AWSRequest DeleteAssociation where
  type
    AWSResponse DeleteAssociation =
      DeleteAssociationResponse
  request :: DeleteAssociation -> Request DeleteAssociation
request = Service -> DeleteAssociation -> Request DeleteAssociation
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy DeleteAssociation
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse DeleteAssociation)))
response =
    (Int
 -> ResponseHeaders
 -> ()
 -> Either String (AWSResponse DeleteAssociation))
-> Logger
-> Service
-> Proxy DeleteAssociation
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse DeleteAssociation)))
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 -> DeleteAssociationResponse
DeleteAssociationResponse'
            (Int -> DeleteAssociationResponse)
-> Either String Int -> Either String DeleteAssociationResponse
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 DeleteAssociation

instance Prelude.NFData DeleteAssociation

instance Core.ToHeaders DeleteAssociation where
  toHeaders :: DeleteAssociation -> ResponseHeaders
toHeaders =
    ResponseHeaders -> DeleteAssociation -> 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
"AmazonSSM.DeleteAssociation" ::
                          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 DeleteAssociation where
  toJSON :: DeleteAssociation -> Value
toJSON DeleteAssociation' {Maybe Text
name :: Maybe Text
instanceId :: Maybe Text
associationId :: Maybe Text
$sel:name:DeleteAssociation' :: DeleteAssociation -> Maybe Text
$sel:instanceId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
$sel:associationId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"AssociationId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
associationId,
            (Text
"InstanceId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
instanceId,
            (Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
name
          ]
      )

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

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

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

-- |
-- Create a value of 'DeleteAssociationResponse' 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', 'deleteAssociationResponse_httpStatus' - The response's http status code.
newDeleteAssociationResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DeleteAssociationResponse
newDeleteAssociationResponse :: Int -> DeleteAssociationResponse
newDeleteAssociationResponse Int
pHttpStatus_ =
  DeleteAssociationResponse' :: Int -> DeleteAssociationResponse
DeleteAssociationResponse'
    { $sel:httpStatus:DeleteAssociationResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

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

instance Prelude.NFData DeleteAssociationResponse