{-# 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.AcceptPortfolioShare -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Accepts an offer to share the specified portfolio. module Amazonka.ServiceCatalog.AcceptPortfolioShare ( -- * Creating a Request AcceptPortfolioShare (..), newAcceptPortfolioShare, -- * Request Lenses acceptPortfolioShare_acceptLanguage, acceptPortfolioShare_portfolioShareType, acceptPortfolioShare_portfolioId, -- * Destructuring the Response AcceptPortfolioShareResponse (..), newAcceptPortfolioShareResponse, -- * Response Lenses acceptPortfolioShareResponse_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:/ 'newAcceptPortfolioShare' smart constructor. data AcceptPortfolioShare = AcceptPortfolioShare' { -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese acceptLanguage :: Prelude.Maybe Prelude.Text, -- | The type of shared portfolios to accept. The default is to accept -- imported portfolios. -- -- - @AWS_ORGANIZATIONS@ - Accept portfolios shared by the management -- account of your organization. -- -- - @IMPORTED@ - Accept imported portfolios. -- -- - @AWS_SERVICECATALOG@ - Not supported. (Throws -- ResourceNotFoundException.) -- -- For example, -- @aws servicecatalog accept-portfolio-share --portfolio-id \"port-2qwzkwxt3y5fk\" --portfolio-share-type AWS_ORGANIZATIONS@ portfolioShareType :: Prelude.Maybe PortfolioShareType, -- | The portfolio identifier. portfolioId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AcceptPortfolioShare' 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', 'acceptPortfolioShare_acceptLanguage' - The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese -- -- 'portfolioShareType', 'acceptPortfolioShare_portfolioShareType' - The type of shared portfolios to accept. The default is to accept -- imported portfolios. -- -- - @AWS_ORGANIZATIONS@ - Accept portfolios shared by the management -- account of your organization. -- -- - @IMPORTED@ - Accept imported portfolios. -- -- - @AWS_SERVICECATALOG@ - Not supported. (Throws -- ResourceNotFoundException.) -- -- For example, -- @aws servicecatalog accept-portfolio-share --portfolio-id \"port-2qwzkwxt3y5fk\" --portfolio-share-type AWS_ORGANIZATIONS@ -- -- 'portfolioId', 'acceptPortfolioShare_portfolioId' - The portfolio identifier. newAcceptPortfolioShare :: -- | 'portfolioId' Prelude.Text -> AcceptPortfolioShare newAcceptPortfolioShare pPortfolioId_ = AcceptPortfolioShare' { acceptLanguage = Prelude.Nothing, portfolioShareType = Prelude.Nothing, portfolioId = pPortfolioId_ } -- | The language code. -- -- - @en@ - English (default) -- -- - @jp@ - Japanese -- -- - @zh@ - Chinese acceptPortfolioShare_acceptLanguage :: Lens.Lens' AcceptPortfolioShare (Prelude.Maybe Prelude.Text) acceptPortfolioShare_acceptLanguage = Lens.lens (\AcceptPortfolioShare' {acceptLanguage} -> acceptLanguage) (\s@AcceptPortfolioShare' {} a -> s {acceptLanguage = a} :: AcceptPortfolioShare) -- | The type of shared portfolios to accept. The default is to accept -- imported portfolios. -- -- - @AWS_ORGANIZATIONS@ - Accept portfolios shared by the management -- account of your organization. -- -- - @IMPORTED@ - Accept imported portfolios. -- -- - @AWS_SERVICECATALOG@ - Not supported. (Throws -- ResourceNotFoundException.) -- -- For example, -- @aws servicecatalog accept-portfolio-share --portfolio-id \"port-2qwzkwxt3y5fk\" --portfolio-share-type AWS_ORGANIZATIONS@ acceptPortfolioShare_portfolioShareType :: Lens.Lens' AcceptPortfolioShare (Prelude.Maybe PortfolioShareType) acceptPortfolioShare_portfolioShareType = Lens.lens (\AcceptPortfolioShare' {portfolioShareType} -> portfolioShareType) (\s@AcceptPortfolioShare' {} a -> s {portfolioShareType = a} :: AcceptPortfolioShare) -- | The portfolio identifier. acceptPortfolioShare_portfolioId :: Lens.Lens' AcceptPortfolioShare Prelude.Text acceptPortfolioShare_portfolioId = Lens.lens (\AcceptPortfolioShare' {portfolioId} -> portfolioId) (\s@AcceptPortfolioShare' {} a -> s {portfolioId = a} :: AcceptPortfolioShare) instance Core.AWSRequest AcceptPortfolioShare where type AWSResponse AcceptPortfolioShare = AcceptPortfolioShareResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> AcceptPortfolioShareResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable AcceptPortfolioShare where hashWithSalt _salt AcceptPortfolioShare' {..} = _salt `Prelude.hashWithSalt` acceptLanguage `Prelude.hashWithSalt` portfolioShareType `Prelude.hashWithSalt` portfolioId instance Prelude.NFData AcceptPortfolioShare where rnf AcceptPortfolioShare' {..} = Prelude.rnf acceptLanguage `Prelude.seq` Prelude.rnf portfolioShareType `Prelude.seq` Prelude.rnf portfolioId instance Data.ToHeaders AcceptPortfolioShare where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWS242ServiceCatalogService.AcceptPortfolioShare" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON AcceptPortfolioShare where toJSON AcceptPortfolioShare' {..} = Data.object ( Prelude.catMaybes [ ("AcceptLanguage" Data..=) Prelude.<$> acceptLanguage, ("PortfolioShareType" Data..=) Prelude.<$> portfolioShareType, Prelude.Just ("PortfolioId" Data..= portfolioId) ] ) instance Data.ToPath AcceptPortfolioShare where toPath = Prelude.const "/" instance Data.ToQuery AcceptPortfolioShare where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newAcceptPortfolioShareResponse' smart constructor. data AcceptPortfolioShareResponse = AcceptPortfolioShareResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AcceptPortfolioShareResponse' 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: -- -- 'httpStatus', 'acceptPortfolioShareResponse_httpStatus' - The response's http status code. newAcceptPortfolioShareResponse :: -- | 'httpStatus' Prelude.Int -> AcceptPortfolioShareResponse newAcceptPortfolioShareResponse pHttpStatus_ = AcceptPortfolioShareResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. acceptPortfolioShareResponse_httpStatus :: Lens.Lens' AcceptPortfolioShareResponse Prelude.Int acceptPortfolioShareResponse_httpStatus = Lens.lens (\AcceptPortfolioShareResponse' {httpStatus} -> httpStatus) (\s@AcceptPortfolioShareResponse' {} a -> s {httpStatus = a} :: AcceptPortfolioShareResponse) instance Prelude.NFData AcceptPortfolioShareResponse where rnf AcceptPortfolioShareResponse' {..} = Prelude.rnf httpStatus