{-# 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.Lightsail.GetOperation -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns information about a specific operation. Operations include -- events such as when you create an instance, allocate a static IP, attach -- a static IP, and so on. module Amazonka.Lightsail.GetOperation ( -- * Creating a Request GetOperation (..), newGetOperation, -- * Request Lenses getOperation_operationId, -- * Destructuring the Response GetOperationResponse (..), newGetOperationResponse, -- * Response Lenses getOperationResponse_operation, getOperationResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Lightsail.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetOperation' smart constructor. data GetOperation = GetOperation' { -- | A GUID used to identify the operation. operationId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetOperation' 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: -- -- 'operationId', 'getOperation_operationId' - A GUID used to identify the operation. newGetOperation :: -- | 'operationId' Prelude.Text -> GetOperation newGetOperation pOperationId_ = GetOperation' {operationId = pOperationId_} -- | A GUID used to identify the operation. getOperation_operationId :: Lens.Lens' GetOperation Prelude.Text getOperation_operationId = Lens.lens (\GetOperation' {operationId} -> operationId) (\s@GetOperation' {} a -> s {operationId = a} :: GetOperation) instance Core.AWSRequest GetOperation where type AWSResponse GetOperation = GetOperationResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetOperationResponse' Prelude.<$> (x Data..?> "operation") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetOperation where hashWithSalt _salt GetOperation' {..} = _salt `Prelude.hashWithSalt` operationId instance Prelude.NFData GetOperation where rnf GetOperation' {..} = Prelude.rnf operationId instance Data.ToHeaders GetOperation where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Lightsail_20161128.GetOperation" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON GetOperation where toJSON GetOperation' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("operationId" Data..= operationId)] ) instance Data.ToPath GetOperation where toPath = Prelude.const "/" instance Data.ToQuery GetOperation where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetOperationResponse' smart constructor. data GetOperationResponse = GetOperationResponse' { -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. operation :: Prelude.Maybe Operation, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetOperationResponse' 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: -- -- 'operation', 'getOperationResponse_operation' - An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. -- -- 'httpStatus', 'getOperationResponse_httpStatus' - The response's http status code. newGetOperationResponse :: -- | 'httpStatus' Prelude.Int -> GetOperationResponse newGetOperationResponse pHttpStatus_ = GetOperationResponse' { operation = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. getOperationResponse_operation :: Lens.Lens' GetOperationResponse (Prelude.Maybe Operation) getOperationResponse_operation = Lens.lens (\GetOperationResponse' {operation} -> operation) (\s@GetOperationResponse' {} a -> s {operation = a} :: GetOperationResponse) -- | The response's http status code. getOperationResponse_httpStatus :: Lens.Lens' GetOperationResponse Prelude.Int getOperationResponse_httpStatus = Lens.lens (\GetOperationResponse' {httpStatus} -> httpStatus) (\s@GetOperationResponse' {} a -> s {httpStatus = a} :: GetOperationResponse) instance Prelude.NFData GetOperationResponse where rnf GetOperationResponse' {..} = Prelude.rnf operation `Prelude.seq` Prelude.rnf httpStatus