{-# 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.GetDeployment -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets information about a Deployment resource. module Amazonka.APIGateway.GetDeployment ( -- * Creating a Request GetDeployment (..), newGetDeployment, -- * Request Lenses getDeployment_embed, getDeployment_restApiId, getDeployment_deploymentId, -- * Destructuring the Response Deployment (..), newDeployment, -- * Response Lenses deployment_apiSummary, deployment_createdDate, deployment_description, deployment_id, ) 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 -- | Requests API Gateway to get information about a Deployment resource. -- -- /See:/ 'newGetDeployment' smart constructor. data GetDeployment = GetDeployment' { -- | A query parameter to retrieve the specified embedded resources of the -- returned Deployment resource in the response. In a REST API call, this -- @embed@ parameter value is a list of comma-separated strings, as in -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=var1,var2@. -- The SDK and other platform-dependent libraries might use a different -- format for the list. Currently, this request supports only retrieval of -- the embedded API summary this way. Hence, the parameter value must be a -- single-valued list containing only the @\"apisummary\"@ string. For -- example, -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=apisummary@. embed :: Prelude.Maybe [Prelude.Text], -- | The string identifier of the associated RestApi. restApiId :: Prelude.Text, -- | The identifier of the Deployment resource to get information about. deploymentId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetDeployment' 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: -- -- 'embed', 'getDeployment_embed' - A query parameter to retrieve the specified embedded resources of the -- returned Deployment resource in the response. In a REST API call, this -- @embed@ parameter value is a list of comma-separated strings, as in -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=var1,var2@. -- The SDK and other platform-dependent libraries might use a different -- format for the list. Currently, this request supports only retrieval of -- the embedded API summary this way. Hence, the parameter value must be a -- single-valued list containing only the @\"apisummary\"@ string. For -- example, -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=apisummary@. -- -- 'restApiId', 'getDeployment_restApiId' - The string identifier of the associated RestApi. -- -- 'deploymentId', 'getDeployment_deploymentId' - The identifier of the Deployment resource to get information about. newGetDeployment :: -- | 'restApiId' Prelude.Text -> -- | 'deploymentId' Prelude.Text -> GetDeployment newGetDeployment pRestApiId_ pDeploymentId_ = GetDeployment' { embed = Prelude.Nothing, restApiId = pRestApiId_, deploymentId = pDeploymentId_ } -- | A query parameter to retrieve the specified embedded resources of the -- returned Deployment resource in the response. In a REST API call, this -- @embed@ parameter value is a list of comma-separated strings, as in -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=var1,var2@. -- The SDK and other platform-dependent libraries might use a different -- format for the list. Currently, this request supports only retrieval of -- the embedded API summary this way. Hence, the parameter value must be a -- single-valued list containing only the @\"apisummary\"@ string. For -- example, -- @GET \/restapis\/{restapi_id}\/deployments\/{deployment_id}?embed=apisummary@. getDeployment_embed :: Lens.Lens' GetDeployment (Prelude.Maybe [Prelude.Text]) getDeployment_embed = Lens.lens (\GetDeployment' {embed} -> embed) (\s@GetDeployment' {} a -> s {embed = a} :: GetDeployment) Prelude.. Lens.mapping Lens.coerced -- | The string identifier of the associated RestApi. getDeployment_restApiId :: Lens.Lens' GetDeployment Prelude.Text getDeployment_restApiId = Lens.lens (\GetDeployment' {restApiId} -> restApiId) (\s@GetDeployment' {} a -> s {restApiId = a} :: GetDeployment) -- | The identifier of the Deployment resource to get information about. getDeployment_deploymentId :: Lens.Lens' GetDeployment Prelude.Text getDeployment_deploymentId = Lens.lens (\GetDeployment' {deploymentId} -> deploymentId) (\s@GetDeployment' {} a -> s {deploymentId = a} :: GetDeployment) instance Core.AWSRequest GetDeployment where type AWSResponse GetDeployment = Deployment request overrides = Request.get (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable GetDeployment where hashWithSalt _salt GetDeployment' {..} = _salt `Prelude.hashWithSalt` embed `Prelude.hashWithSalt` restApiId `Prelude.hashWithSalt` deploymentId instance Prelude.NFData GetDeployment where rnf GetDeployment' {..} = Prelude.rnf embed `Prelude.seq` Prelude.rnf restApiId `Prelude.seq` Prelude.rnf deploymentId instance Data.ToHeaders GetDeployment where toHeaders = Prelude.const ( Prelude.mconcat [ "Accept" Data.=# ("application/json" :: Prelude.ByteString) ] ) instance Data.ToPath GetDeployment where toPath GetDeployment' {..} = Prelude.mconcat [ "/restapis/", Data.toBS restApiId, "/deployments/", Data.toBS deploymentId ] instance Data.ToQuery GetDeployment where toQuery GetDeployment' {..} = Prelude.mconcat [ "embed" Data.=: Data.toQuery (Data.toQueryList "member" Prelude.<$> embed) ]