amazonka-ds-2.0: gen/Amazonka/DirectoryService/CreateComputer.hs
{-# 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.DirectoryService.CreateComputer
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Creates an Active Directory computer object in the specified directory.
module Amazonka.DirectoryService.CreateComputer
( -- * Creating a Request
CreateComputer (..),
newCreateComputer,
-- * Request Lenses
createComputer_computerAttributes,
createComputer_organizationalUnitDistinguishedName,
createComputer_directoryId,
createComputer_computerName,
createComputer_password,
-- * Destructuring the Response
CreateComputerResponse (..),
newCreateComputerResponse,
-- * Response Lenses
createComputerResponse_computer,
createComputerResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.DirectoryService.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | Contains the inputs for the CreateComputer operation.
--
-- /See:/ 'newCreateComputer' smart constructor.
data CreateComputer = CreateComputer'
{ -- | An array of Attribute objects that contain any LDAP attributes to apply
-- to the computer account.
computerAttributes :: Prelude.Maybe [Attribute],
-- | The fully-qualified distinguished name of the organizational unit to
-- place the computer account in.
organizationalUnitDistinguishedName :: Prelude.Maybe Prelude.Text,
-- | The identifier of the directory in which to create the computer account.
directoryId :: Prelude.Text,
-- | The name of the computer account.
computerName :: Prelude.Text,
-- | A one-time password that is used to join the computer to the directory.
-- You should generate a random, strong password to use for this parameter.
password :: Data.Sensitive Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateComputer' 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:
--
-- 'computerAttributes', 'createComputer_computerAttributes' - An array of Attribute objects that contain any LDAP attributes to apply
-- to the computer account.
--
-- 'organizationalUnitDistinguishedName', 'createComputer_organizationalUnitDistinguishedName' - The fully-qualified distinguished name of the organizational unit to
-- place the computer account in.
--
-- 'directoryId', 'createComputer_directoryId' - The identifier of the directory in which to create the computer account.
--
-- 'computerName', 'createComputer_computerName' - The name of the computer account.
--
-- 'password', 'createComputer_password' - A one-time password that is used to join the computer to the directory.
-- You should generate a random, strong password to use for this parameter.
newCreateComputer ::
-- | 'directoryId'
Prelude.Text ->
-- | 'computerName'
Prelude.Text ->
-- | 'password'
Prelude.Text ->
CreateComputer
newCreateComputer
pDirectoryId_
pComputerName_
pPassword_ =
CreateComputer'
{ computerAttributes =
Prelude.Nothing,
organizationalUnitDistinguishedName =
Prelude.Nothing,
directoryId = pDirectoryId_,
computerName = pComputerName_,
password = Data._Sensitive Lens.# pPassword_
}
-- | An array of Attribute objects that contain any LDAP attributes to apply
-- to the computer account.
createComputer_computerAttributes :: Lens.Lens' CreateComputer (Prelude.Maybe [Attribute])
createComputer_computerAttributes = Lens.lens (\CreateComputer' {computerAttributes} -> computerAttributes) (\s@CreateComputer' {} a -> s {computerAttributes = a} :: CreateComputer) Prelude.. Lens.mapping Lens.coerced
-- | The fully-qualified distinguished name of the organizational unit to
-- place the computer account in.
createComputer_organizationalUnitDistinguishedName :: Lens.Lens' CreateComputer (Prelude.Maybe Prelude.Text)
createComputer_organizationalUnitDistinguishedName = Lens.lens (\CreateComputer' {organizationalUnitDistinguishedName} -> organizationalUnitDistinguishedName) (\s@CreateComputer' {} a -> s {organizationalUnitDistinguishedName = a} :: CreateComputer)
-- | The identifier of the directory in which to create the computer account.
createComputer_directoryId :: Lens.Lens' CreateComputer Prelude.Text
createComputer_directoryId = Lens.lens (\CreateComputer' {directoryId} -> directoryId) (\s@CreateComputer' {} a -> s {directoryId = a} :: CreateComputer)
-- | The name of the computer account.
createComputer_computerName :: Lens.Lens' CreateComputer Prelude.Text
createComputer_computerName = Lens.lens (\CreateComputer' {computerName} -> computerName) (\s@CreateComputer' {} a -> s {computerName = a} :: CreateComputer)
-- | A one-time password that is used to join the computer to the directory.
-- You should generate a random, strong password to use for this parameter.
createComputer_password :: Lens.Lens' CreateComputer Prelude.Text
createComputer_password = Lens.lens (\CreateComputer' {password} -> password) (\s@CreateComputer' {} a -> s {password = a} :: CreateComputer) Prelude.. Data._Sensitive
instance Core.AWSRequest CreateComputer where
type
AWSResponse CreateComputer =
CreateComputerResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
CreateComputerResponse'
Prelude.<$> (x Data..?> "Computer")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable CreateComputer where
hashWithSalt _salt CreateComputer' {..} =
_salt
`Prelude.hashWithSalt` computerAttributes
`Prelude.hashWithSalt` organizationalUnitDistinguishedName
`Prelude.hashWithSalt` directoryId
`Prelude.hashWithSalt` computerName
`Prelude.hashWithSalt` password
instance Prelude.NFData CreateComputer where
rnf CreateComputer' {..} =
Prelude.rnf computerAttributes
`Prelude.seq` Prelude.rnf organizationalUnitDistinguishedName
`Prelude.seq` Prelude.rnf directoryId
`Prelude.seq` Prelude.rnf computerName
`Prelude.seq` Prelude.rnf password
instance Data.ToHeaders CreateComputer where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "DirectoryService_20150416.CreateComputer" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON CreateComputer where
toJSON CreateComputer' {..} =
Data.object
( Prelude.catMaybes
[ ("ComputerAttributes" Data..=)
Prelude.<$> computerAttributes,
("OrganizationalUnitDistinguishedName" Data..=)
Prelude.<$> organizationalUnitDistinguishedName,
Prelude.Just ("DirectoryId" Data..= directoryId),
Prelude.Just ("ComputerName" Data..= computerName),
Prelude.Just ("Password" Data..= password)
]
)
instance Data.ToPath CreateComputer where
toPath = Prelude.const "/"
instance Data.ToQuery CreateComputer where
toQuery = Prelude.const Prelude.mempty
-- | Contains the results for the CreateComputer operation.
--
-- /See:/ 'newCreateComputerResponse' smart constructor.
data CreateComputerResponse = CreateComputerResponse'
{ -- | A Computer object that represents the computer account.
computer :: Prelude.Maybe Computer,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateComputerResponse' 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:
--
-- 'computer', 'createComputerResponse_computer' - A Computer object that represents the computer account.
--
-- 'httpStatus', 'createComputerResponse_httpStatus' - The response's http status code.
newCreateComputerResponse ::
-- | 'httpStatus'
Prelude.Int ->
CreateComputerResponse
newCreateComputerResponse pHttpStatus_ =
CreateComputerResponse'
{ computer = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | A Computer object that represents the computer account.
createComputerResponse_computer :: Lens.Lens' CreateComputerResponse (Prelude.Maybe Computer)
createComputerResponse_computer = Lens.lens (\CreateComputerResponse' {computer} -> computer) (\s@CreateComputerResponse' {} a -> s {computer = a} :: CreateComputerResponse)
-- | The response's http status code.
createComputerResponse_httpStatus :: Lens.Lens' CreateComputerResponse Prelude.Int
createComputerResponse_httpStatus = Lens.lens (\CreateComputerResponse' {httpStatus} -> httpStatus) (\s@CreateComputerResponse' {} a -> s {httpStatus = a} :: CreateComputerResponse)
instance Prelude.NFData CreateComputerResponse where
rnf CreateComputerResponse' {..} =
Prelude.rnf computer
`Prelude.seq` Prelude.rnf httpStatus