{-# 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.APIGateway.UpdateRestApi -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Changes information about the specified API. module Amazonka.APIGateway.UpdateRestApi ( -- * Creating a Request UpdateRestApi (..), newUpdateRestApi, -- * Request Lenses updateRestApi_patchOperations, updateRestApi_restApiId, -- * Destructuring the Response RestApi (..), newRestApi, -- * Response Lenses restApi_apiKeySource, restApi_binaryMediaTypes, restApi_createdDate, restApi_description, restApi_disableExecuteApiEndpoint, restApi_endpointConfiguration, restApi_id, restApi_minimumCompressionSize, restApi_name, restApi_policy, restApi_tags, restApi_version, restApi_warnings, ) where import Amazonka.APIGateway.Types import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Request to update an existing RestApi resource in your collection. -- -- /See:/ 'newUpdateRestApi' smart constructor. data UpdateRestApi = UpdateRestApi' { -- | For more information about supported patch operations, see -- . patchOperations :: Prelude.Maybe [PatchOperation], -- | The string identifier of the associated RestApi. restApiId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateRestApi' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'patchOperations', 'updateRestApi_patchOperations' - For more information about supported patch operations, see -- . -- -- 'restApiId', 'updateRestApi_restApiId' - The string identifier of the associated RestApi. newUpdateRestApi :: -- | 'restApiId' Prelude.Text -> UpdateRestApi newUpdateRestApi pRestApiId_ = UpdateRestApi' { patchOperations = Prelude.Nothing, restApiId = pRestApiId_ } -- | For more information about supported patch operations, see -- . updateRestApi_patchOperations :: Lens.Lens' UpdateRestApi (Prelude.Maybe [PatchOperation]) updateRestApi_patchOperations = Lens.lens (\UpdateRestApi' {patchOperations} -> patchOperations) (\s@UpdateRestApi' {} a -> s {patchOperations = a} :: UpdateRestApi) Prelude.. Lens.mapping Lens.coerced -- | The string identifier of the associated RestApi. updateRestApi_restApiId :: Lens.Lens' UpdateRestApi Prelude.Text updateRestApi_restApiId = Lens.lens (\UpdateRestApi' {restApiId} -> restApiId) (\s@UpdateRestApi' {} a -> s {restApiId = a} :: UpdateRestApi) instance Core.AWSRequest UpdateRestApi where type AWSResponse UpdateRestApi = RestApi request overrides = Request.patchJSON (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable UpdateRestApi where hashWithSalt _salt UpdateRestApi' {..} = _salt `Prelude.hashWithSalt` patchOperations `Prelude.hashWithSalt` restApiId instance Prelude.NFData UpdateRestApi where rnf UpdateRestApi' {..} = Prelude.rnf patchOperations `Prelude.seq` Prelude.rnf restApiId instance Data.ToHeaders UpdateRestApi where toHeaders = Prelude.const ( Prelude.mconcat [ "Accept" Data.=# ("application/json" :: Prelude.ByteString) ] ) instance Data.ToJSON UpdateRestApi where toJSON UpdateRestApi' {..} = Data.object ( Prelude.catMaybes [ ("patchOperations" Data..=) Prelude.<$> patchOperations ] ) instance Data.ToPath UpdateRestApi where toPath UpdateRestApi' {..} = Prelude.mconcat ["/restapis/", Data.toBS restApiId] instance Data.ToQuery UpdateRestApi where toQuery = Prelude.const Prelude.mempty