{-# 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.ServiceCatalog.DescribeProduct -- 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 the specified product. module Amazonka.ServiceCatalog.DescribeProduct ( -- * Creating a Request DescribeProduct (..), newDescribeProduct, -- * Request Lenses describeProduct_acceptLanguage, describeProduct_id, describeProduct_name, -- * Destructuring the Response DescribeProductResponse (..), newDescribeProductResponse, -- * Response Lenses describeProductResponse_budgets, describeProductResponse_launchPaths, describeProductResponse_productViewSummary, describeProductResponse_provisioningArtifacts, describeProductResponse_httpStatus, ) where 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 import Amazonka.ServiceCatalog.Types -- | /See:/ 'newDescribeProduct' smart constructor. data DescribeProduct = DescribeProduct' { -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese acceptLanguage :: Prelude.Maybe Prelude.Text, -- | The product identifier. id :: Prelude.Maybe Prelude.Text, -- | The product name. name :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeProduct' 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: -- -- 'acceptLanguage', 'describeProduct_acceptLanguage' - The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese -- -- 'id', 'describeProduct_id' - The product identifier. -- -- 'name', 'describeProduct_name' - The product name. newDescribeProduct :: DescribeProduct newDescribeProduct = DescribeProduct' { acceptLanguage = Prelude.Nothing, id = Prelude.Nothing, name = Prelude.Nothing } -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese describeProduct_acceptLanguage :: Lens.Lens' DescribeProduct (Prelude.Maybe Prelude.Text) describeProduct_acceptLanguage = Lens.lens (\DescribeProduct' {acceptLanguage} -> acceptLanguage) (\s@DescribeProduct' {} a -> s {acceptLanguage = a} :: DescribeProduct) -- | The product identifier. describeProduct_id :: Lens.Lens' DescribeProduct (Prelude.Maybe Prelude.Text) describeProduct_id = Lens.lens (\DescribeProduct' {id} -> id) (\s@DescribeProduct' {} a -> s {id = a} :: DescribeProduct) -- | The product name. describeProduct_name :: Lens.Lens' DescribeProduct (Prelude.Maybe Prelude.Text) describeProduct_name = Lens.lens (\DescribeProduct' {name} -> name) (\s@DescribeProduct' {} a -> s {name = a} :: DescribeProduct) instance Core.AWSRequest DescribeProduct where type AWSResponse DescribeProduct = DescribeProductResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DescribeProductResponse' Prelude.<$> (x Data..?> "Budgets" Core..!@ Prelude.mempty) Prelude.<*> (x Data..?> "LaunchPaths" Core..!@ Prelude.mempty) Prelude.<*> (x Data..?> "ProductViewSummary") Prelude.<*> ( x Data..?> "ProvisioningArtifacts" Core..!@ Prelude.mempty ) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeProduct where hashWithSalt _salt DescribeProduct' {..} = _salt `Prelude.hashWithSalt` acceptLanguage `Prelude.hashWithSalt` id `Prelude.hashWithSalt` name instance Prelude.NFData DescribeProduct where rnf DescribeProduct' {..} = Prelude.rnf acceptLanguage `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf name instance Data.ToHeaders DescribeProduct where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWS242ServiceCatalogService.DescribeProduct" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DescribeProduct where toJSON DescribeProduct' {..} = Data.object ( Prelude.catMaybes [ ("AcceptLanguage" Data..=) Prelude.<$> acceptLanguage, ("Id" Data..=) Prelude.<$> id, ("Name" Data..=) Prelude.<$> name ] ) instance Data.ToPath DescribeProduct where toPath = Prelude.const "/" instance Data.ToQuery DescribeProduct where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDescribeProductResponse' smart constructor. data DescribeProductResponse = DescribeProductResponse' { -- | Information about the associated budgets. budgets :: Prelude.Maybe [BudgetDetail], -- | Information about the associated launch paths. launchPaths :: Prelude.Maybe [LaunchPath], -- | Summary information about the product view. productViewSummary :: Prelude.Maybe ProductViewSummary, -- | Information about the provisioning artifacts for the specified product. provisioningArtifacts :: Prelude.Maybe [ProvisioningArtifact], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeProductResponse' 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: -- -- 'budgets', 'describeProductResponse_budgets' - Information about the associated budgets. -- -- 'launchPaths', 'describeProductResponse_launchPaths' - Information about the associated launch paths. -- -- 'productViewSummary', 'describeProductResponse_productViewSummary' - Summary information about the product view. -- -- 'provisioningArtifacts', 'describeProductResponse_provisioningArtifacts' - Information about the provisioning artifacts for the specified product. -- -- 'httpStatus', 'describeProductResponse_httpStatus' - The response's http status code. newDescribeProductResponse :: -- | 'httpStatus' Prelude.Int -> DescribeProductResponse newDescribeProductResponse pHttpStatus_ = DescribeProductResponse' { budgets = Prelude.Nothing, launchPaths = Prelude.Nothing, productViewSummary = Prelude.Nothing, provisioningArtifacts = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the associated budgets. describeProductResponse_budgets :: Lens.Lens' DescribeProductResponse (Prelude.Maybe [BudgetDetail]) describeProductResponse_budgets = Lens.lens (\DescribeProductResponse' {budgets} -> budgets) (\s@DescribeProductResponse' {} a -> s {budgets = a} :: DescribeProductResponse) Prelude.. Lens.mapping Lens.coerced -- | Information about the associated launch paths. describeProductResponse_launchPaths :: Lens.Lens' DescribeProductResponse (Prelude.Maybe [LaunchPath]) describeProductResponse_launchPaths = Lens.lens (\DescribeProductResponse' {launchPaths} -> launchPaths) (\s@DescribeProductResponse' {} a -> s {launchPaths = a} :: DescribeProductResponse) Prelude.. Lens.mapping Lens.coerced -- | Summary information about the product view. describeProductResponse_productViewSummary :: Lens.Lens' DescribeProductResponse (Prelude.Maybe ProductViewSummary) describeProductResponse_productViewSummary = Lens.lens (\DescribeProductResponse' {productViewSummary} -> productViewSummary) (\s@DescribeProductResponse' {} a -> s {productViewSummary = a} :: DescribeProductResponse) -- | Information about the provisioning artifacts for the specified product. describeProductResponse_provisioningArtifacts :: Lens.Lens' DescribeProductResponse (Prelude.Maybe [ProvisioningArtifact]) describeProductResponse_provisioningArtifacts = Lens.lens (\DescribeProductResponse' {provisioningArtifacts} -> provisioningArtifacts) (\s@DescribeProductResponse' {} a -> s {provisioningArtifacts = a} :: DescribeProductResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. describeProductResponse_httpStatus :: Lens.Lens' DescribeProductResponse Prelude.Int describeProductResponse_httpStatus = Lens.lens (\DescribeProductResponse' {httpStatus} -> httpStatus) (\s@DescribeProductResponse' {} a -> s {httpStatus = a} :: DescribeProductResponse) instance Prelude.NFData DescribeProductResponse where rnf DescribeProductResponse' {..} = Prelude.rnf budgets `Prelude.seq` Prelude.rnf launchPaths `Prelude.seq` Prelude.rnf productViewSummary `Prelude.seq` Prelude.rnf provisioningArtifacts `Prelude.seq` Prelude.rnf httpStatus