{-# 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.ListConstraintsForPortfolio -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists the constraints for the specified portfolio and product. -- -- This operation returns paginated results. module Amazonka.ServiceCatalog.ListConstraintsForPortfolio ( -- * Creating a Request ListConstraintsForPortfolio (..), newListConstraintsForPortfolio, -- * Request Lenses listConstraintsForPortfolio_acceptLanguage, listConstraintsForPortfolio_pageSize, listConstraintsForPortfolio_pageToken, listConstraintsForPortfolio_productId, listConstraintsForPortfolio_portfolioId, -- * Destructuring the Response ListConstraintsForPortfolioResponse (..), newListConstraintsForPortfolioResponse, -- * Response Lenses listConstraintsForPortfolioResponse_constraintDetails, listConstraintsForPortfolioResponse_nextPageToken, listConstraintsForPortfolioResponse_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:/ 'newListConstraintsForPortfolio' smart constructor. data ListConstraintsForPortfolio = ListConstraintsForPortfolio' { -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese acceptLanguage :: Prelude.Maybe Prelude.Text, -- | The maximum number of items to return with this call. pageSize :: Prelude.Maybe Prelude.Natural, -- | The page token for the next set of results. To retrieve the first set of -- results, use null. pageToken :: Prelude.Maybe Prelude.Text, -- | The product identifier. productId :: Prelude.Maybe Prelude.Text, -- | The portfolio identifier. portfolioId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListConstraintsForPortfolio' 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', 'listConstraintsForPortfolio_acceptLanguage' - The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese -- -- 'pageSize', 'listConstraintsForPortfolio_pageSize' - The maximum number of items to return with this call. -- -- 'pageToken', 'listConstraintsForPortfolio_pageToken' - The page token for the next set of results. To retrieve the first set of -- results, use null. -- -- 'productId', 'listConstraintsForPortfolio_productId' - The product identifier. -- -- 'portfolioId', 'listConstraintsForPortfolio_portfolioId' - The portfolio identifier. newListConstraintsForPortfolio :: -- | 'portfolioId' Prelude.Text -> ListConstraintsForPortfolio newListConstraintsForPortfolio pPortfolioId_ = ListConstraintsForPortfolio' { acceptLanguage = Prelude.Nothing, pageSize = Prelude.Nothing, pageToken = Prelude.Nothing, productId = Prelude.Nothing, portfolioId = pPortfolioId_ } -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese listConstraintsForPortfolio_acceptLanguage :: Lens.Lens' ListConstraintsForPortfolio (Prelude.Maybe Prelude.Text) listConstraintsForPortfolio_acceptLanguage = Lens.lens (\ListConstraintsForPortfolio' {acceptLanguage} -> acceptLanguage) (\s@ListConstraintsForPortfolio' {} a -> s {acceptLanguage = a} :: ListConstraintsForPortfolio) -- | The maximum number of items to return with this call. listConstraintsForPortfolio_pageSize :: Lens.Lens' ListConstraintsForPortfolio (Prelude.Maybe Prelude.Natural) listConstraintsForPortfolio_pageSize = Lens.lens (\ListConstraintsForPortfolio' {pageSize} -> pageSize) (\s@ListConstraintsForPortfolio' {} a -> s {pageSize = a} :: ListConstraintsForPortfolio) -- | The page token for the next set of results. To retrieve the first set of -- results, use null. listConstraintsForPortfolio_pageToken :: Lens.Lens' ListConstraintsForPortfolio (Prelude.Maybe Prelude.Text) listConstraintsForPortfolio_pageToken = Lens.lens (\ListConstraintsForPortfolio' {pageToken} -> pageToken) (\s@ListConstraintsForPortfolio' {} a -> s {pageToken = a} :: ListConstraintsForPortfolio) -- | The product identifier. listConstraintsForPortfolio_productId :: Lens.Lens' ListConstraintsForPortfolio (Prelude.Maybe Prelude.Text) listConstraintsForPortfolio_productId = Lens.lens (\ListConstraintsForPortfolio' {productId} -> productId) (\s@ListConstraintsForPortfolio' {} a -> s {productId = a} :: ListConstraintsForPortfolio) -- | The portfolio identifier. listConstraintsForPortfolio_portfolioId :: Lens.Lens' ListConstraintsForPortfolio Prelude.Text listConstraintsForPortfolio_portfolioId = Lens.lens (\ListConstraintsForPortfolio' {portfolioId} -> portfolioId) (\s@ListConstraintsForPortfolio' {} a -> s {portfolioId = a} :: ListConstraintsForPortfolio) instance Core.AWSPager ListConstraintsForPortfolio where page rq rs | Core.stop ( rs Lens.^? listConstraintsForPortfolioResponse_nextPageToken Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? listConstraintsForPortfolioResponse_constraintDetails Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& listConstraintsForPortfolio_pageToken Lens..~ rs Lens.^? listConstraintsForPortfolioResponse_nextPageToken Prelude.. Lens._Just instance Core.AWSRequest ListConstraintsForPortfolio where type AWSResponse ListConstraintsForPortfolio = ListConstraintsForPortfolioResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ListConstraintsForPortfolioResponse' Prelude.<$> ( x Data..?> "ConstraintDetails" Core..!@ Prelude.mempty ) Prelude.<*> (x Data..?> "NextPageToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListConstraintsForPortfolio where hashWithSalt _salt ListConstraintsForPortfolio' {..} = _salt `Prelude.hashWithSalt` acceptLanguage `Prelude.hashWithSalt` pageSize `Prelude.hashWithSalt` pageToken `Prelude.hashWithSalt` productId `Prelude.hashWithSalt` portfolioId instance Prelude.NFData ListConstraintsForPortfolio where rnf ListConstraintsForPortfolio' {..} = Prelude.rnf acceptLanguage `Prelude.seq` Prelude.rnf pageSize `Prelude.seq` Prelude.rnf pageToken `Prelude.seq` Prelude.rnf productId `Prelude.seq` Prelude.rnf portfolioId instance Data.ToHeaders ListConstraintsForPortfolio where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWS242ServiceCatalogService.ListConstraintsForPortfolio" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ListConstraintsForPortfolio where toJSON ListConstraintsForPortfolio' {..} = Data.object ( Prelude.catMaybes [ ("AcceptLanguage" Data..=) Prelude.<$> acceptLanguage, ("PageSize" Data..=) Prelude.<$> pageSize, ("PageToken" Data..=) Prelude.<$> pageToken, ("ProductId" Data..=) Prelude.<$> productId, Prelude.Just ("PortfolioId" Data..= portfolioId) ] ) instance Data.ToPath ListConstraintsForPortfolio where toPath = Prelude.const "/" instance Data.ToQuery ListConstraintsForPortfolio where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newListConstraintsForPortfolioResponse' smart constructor. data ListConstraintsForPortfolioResponse = ListConstraintsForPortfolioResponse' { -- | Information about the constraints. constraintDetails :: Prelude.Maybe [ConstraintDetail], -- | The page token to use to retrieve the next set of results. If there are -- no additional results, this value is null. nextPageToken :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListConstraintsForPortfolioResponse' 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: -- -- 'constraintDetails', 'listConstraintsForPortfolioResponse_constraintDetails' - Information about the constraints. -- -- 'nextPageToken', 'listConstraintsForPortfolioResponse_nextPageToken' - The page token to use to retrieve the next set of results. If there are -- no additional results, this value is null. -- -- 'httpStatus', 'listConstraintsForPortfolioResponse_httpStatus' - The response's http status code. newListConstraintsForPortfolioResponse :: -- | 'httpStatus' Prelude.Int -> ListConstraintsForPortfolioResponse newListConstraintsForPortfolioResponse pHttpStatus_ = ListConstraintsForPortfolioResponse' { constraintDetails = Prelude.Nothing, nextPageToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the constraints. listConstraintsForPortfolioResponse_constraintDetails :: Lens.Lens' ListConstraintsForPortfolioResponse (Prelude.Maybe [ConstraintDetail]) listConstraintsForPortfolioResponse_constraintDetails = Lens.lens (\ListConstraintsForPortfolioResponse' {constraintDetails} -> constraintDetails) (\s@ListConstraintsForPortfolioResponse' {} a -> s {constraintDetails = a} :: ListConstraintsForPortfolioResponse) Prelude.. Lens.mapping Lens.coerced -- | The page token to use to retrieve the next set of results. If there are -- no additional results, this value is null. listConstraintsForPortfolioResponse_nextPageToken :: Lens.Lens' ListConstraintsForPortfolioResponse (Prelude.Maybe Prelude.Text) listConstraintsForPortfolioResponse_nextPageToken = Lens.lens (\ListConstraintsForPortfolioResponse' {nextPageToken} -> nextPageToken) (\s@ListConstraintsForPortfolioResponse' {} a -> s {nextPageToken = a} :: ListConstraintsForPortfolioResponse) -- | The response's http status code. listConstraintsForPortfolioResponse_httpStatus :: Lens.Lens' ListConstraintsForPortfolioResponse Prelude.Int listConstraintsForPortfolioResponse_httpStatus = Lens.lens (\ListConstraintsForPortfolioResponse' {httpStatus} -> httpStatus) (\s@ListConstraintsForPortfolioResponse' {} a -> s {httpStatus = a} :: ListConstraintsForPortfolioResponse) instance Prelude.NFData ListConstraintsForPortfolioResponse where rnf ListConstraintsForPortfolioResponse' {..} = Prelude.rnf constraintDetails `Prelude.seq` Prelude.rnf nextPageToken `Prelude.seq` Prelude.rnf httpStatus