{-# 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.Grafana.DescribeWorkspaceAuthentication -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Displays information about the authentication methods used in one Amazon -- Managed Grafana workspace. module Amazonka.Grafana.DescribeWorkspaceAuthentication ( -- * Creating a Request DescribeWorkspaceAuthentication (..), newDescribeWorkspaceAuthentication, -- * Request Lenses describeWorkspaceAuthentication_workspaceId, -- * Destructuring the Response DescribeWorkspaceAuthenticationResponse (..), newDescribeWorkspaceAuthenticationResponse, -- * Response Lenses describeWorkspaceAuthenticationResponse_httpStatus, describeWorkspaceAuthenticationResponse_authentication, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Grafana.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDescribeWorkspaceAuthentication' smart constructor. data DescribeWorkspaceAuthentication = DescribeWorkspaceAuthentication' { -- | The ID of the workspace to return authentication information about. workspaceId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeWorkspaceAuthentication' 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: -- -- 'workspaceId', 'describeWorkspaceAuthentication_workspaceId' - The ID of the workspace to return authentication information about. newDescribeWorkspaceAuthentication :: -- | 'workspaceId' Prelude.Text -> DescribeWorkspaceAuthentication newDescribeWorkspaceAuthentication pWorkspaceId_ = DescribeWorkspaceAuthentication' { workspaceId = pWorkspaceId_ } -- | The ID of the workspace to return authentication information about. describeWorkspaceAuthentication_workspaceId :: Lens.Lens' DescribeWorkspaceAuthentication Prelude.Text describeWorkspaceAuthentication_workspaceId = Lens.lens (\DescribeWorkspaceAuthentication' {workspaceId} -> workspaceId) (\s@DescribeWorkspaceAuthentication' {} a -> s {workspaceId = a} :: DescribeWorkspaceAuthentication) instance Core.AWSRequest DescribeWorkspaceAuthentication where type AWSResponse DescribeWorkspaceAuthentication = DescribeWorkspaceAuthenticationResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> DescribeWorkspaceAuthenticationResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) Prelude.<*> (x Data..:> "authentication") ) instance Prelude.Hashable DescribeWorkspaceAuthentication where hashWithSalt _salt DescribeWorkspaceAuthentication' {..} = _salt `Prelude.hashWithSalt` workspaceId instance Prelude.NFData DescribeWorkspaceAuthentication where rnf DescribeWorkspaceAuthentication' {..} = Prelude.rnf workspaceId instance Data.ToHeaders DescribeWorkspaceAuthentication where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath DescribeWorkspaceAuthentication where toPath DescribeWorkspaceAuthentication' {..} = Prelude.mconcat [ "/workspaces/", Data.toBS workspaceId, "/authentication" ] instance Data.ToQuery DescribeWorkspaceAuthentication where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDescribeWorkspaceAuthenticationResponse' smart constructor. data DescribeWorkspaceAuthenticationResponse = DescribeWorkspaceAuthenticationResponse' { -- | The response's http status code. httpStatus :: Prelude.Int, -- | A structure containing information about the authentication methods used -- in the workspace. authentication :: AuthenticationDescription } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeWorkspaceAuthenticationResponse' 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', 'describeWorkspaceAuthenticationResponse_httpStatus' - The response's http status code. -- -- 'authentication', 'describeWorkspaceAuthenticationResponse_authentication' - A structure containing information about the authentication methods used -- in the workspace. newDescribeWorkspaceAuthenticationResponse :: -- | 'httpStatus' Prelude.Int -> -- | 'authentication' AuthenticationDescription -> DescribeWorkspaceAuthenticationResponse newDescribeWorkspaceAuthenticationResponse pHttpStatus_ pAuthentication_ = DescribeWorkspaceAuthenticationResponse' { httpStatus = pHttpStatus_, authentication = pAuthentication_ } -- | The response's http status code. describeWorkspaceAuthenticationResponse_httpStatus :: Lens.Lens' DescribeWorkspaceAuthenticationResponse Prelude.Int describeWorkspaceAuthenticationResponse_httpStatus = Lens.lens (\DescribeWorkspaceAuthenticationResponse' {httpStatus} -> httpStatus) (\s@DescribeWorkspaceAuthenticationResponse' {} a -> s {httpStatus = a} :: DescribeWorkspaceAuthenticationResponse) -- | A structure containing information about the authentication methods used -- in the workspace. describeWorkspaceAuthenticationResponse_authentication :: Lens.Lens' DescribeWorkspaceAuthenticationResponse AuthenticationDescription describeWorkspaceAuthenticationResponse_authentication = Lens.lens (\DescribeWorkspaceAuthenticationResponse' {authentication} -> authentication) (\s@DescribeWorkspaceAuthenticationResponse' {} a -> s {authentication = a} :: DescribeWorkspaceAuthenticationResponse) instance Prelude.NFData DescribeWorkspaceAuthenticationResponse where rnf DescribeWorkspaceAuthenticationResponse' {..} = Prelude.rnf httpStatus `Prelude.seq` Prelude.rnf authentication