amazonka-apigateway-1.6.1: Amazon API Gateway SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.APIGateway.PutRestAPI

Contents

Description

A feature of the API Gateway control service for updating an existing API with an input of external API definitions. The update can take the form of merging the supplied definition into the existing API or overwriting the existing API.

Synopsis

Creating a Request

putRestAPI Source #

Creates a value of PutRestAPI with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • praMode - The mode query parameter to specify the update mode. Valid values are "merge" and "overwrite". By default, the update mode is "merge".
  • praFailOnWarnings - A query parameter to indicate whether to rollback the API update (true ) or not (false ) when a warning is encountered. The default value is false .
  • praParameters - Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ignore=documentation as a parameters value, as in the AWS CLI command of aws apigateway import-rest-api --parameters ignore=documentation --body 'file://pathto/imported-api-body.json .
  • praRestAPIId - [Required] The string identifier of the associated RestApi .
  • praBody - [Required] The PUT request body containing external API definitions. Currently, only Swagger definition JSON files are supported. The maximum size of the API definition file is 2MB.

data PutRestAPI Source #

A PUT request to update an existing API, with external API definitions specified as the request body.

See: putRestAPI smart constructor.

Instances
Eq PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Data PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PutRestAPI -> c PutRestAPI #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PutRestAPI #

toConstr :: PutRestAPI -> Constr #

dataTypeOf :: PutRestAPI -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PutRestAPI) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PutRestAPI) #

gmapT :: (forall b. Data b => b -> b) -> PutRestAPI -> PutRestAPI #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PutRestAPI -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PutRestAPI -> r #

gmapQ :: (forall d. Data d => d -> u) -> PutRestAPI -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PutRestAPI -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PutRestAPI -> m PutRestAPI #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRestAPI -> m PutRestAPI #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRestAPI -> m PutRestAPI #

Show PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Generic PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Associated Types

type Rep PutRestAPI :: Type -> Type #

Hashable PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

AWSRequest PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Associated Types

type Rs PutRestAPI :: Type #

ToBody PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Methods

toBody :: PutRestAPI -> RqBody #

ToHeaders PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Methods

toHeaders :: PutRestAPI -> [Header] #

ToPath PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

ToQuery PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

NFData PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Methods

rnf :: PutRestAPI -> () #

type Rep PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

type Rep PutRestAPI = D1 (MetaData "PutRestAPI" "Network.AWS.APIGateway.PutRestAPI" "amazonka-apigateway-1.6.1-BCCM2RP3l9Q2ENgHvKrj59" False) (C1 (MetaCons "PutRestAPI'" PrefixI True) ((S1 (MetaSel (Just "_praMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PutMode)) :*: S1 (MetaSel (Just "_praFailOnWarnings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 (MetaSel (Just "_praParameters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Map Text Text))) :*: (S1 (MetaSel (Just "_praRestAPIId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_praBody") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 ByteString)))))
type Rs PutRestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.PutRestAPI

Request Lenses

praMode :: Lens' PutRestAPI (Maybe PutMode) Source #

The mode query parameter to specify the update mode. Valid values are "merge" and "overwrite". By default, the update mode is "merge".

praFailOnWarnings :: Lens' PutRestAPI (Maybe Bool) Source #

A query parameter to indicate whether to rollback the API update (true ) or not (false ) when a warning is encountered. The default value is false .

praParameters :: Lens' PutRestAPI (HashMap Text Text) Source #

Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ignore=documentation as a parameters value, as in the AWS CLI command of aws apigateway import-rest-api --parameters ignore=documentation --body 'file://pathto/imported-api-body.json .

praRestAPIId :: Lens' PutRestAPI Text Source #

Required
The string identifier of the associated RestApi .

praBody :: Lens' PutRestAPI ByteString Source #

Required
The PUT request body containing external API definitions. Currently, only Swagger definition JSON files are supported. The maximum size of the API definition file is 2MB.

Destructuring the Response

restAPI :: RestAPI Source #

Creates a value of RestAPI with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • raMinimumCompressionSize - A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.
  • raBinaryMediaTypes - The list of binary media types supported by the RestApi . By default, the RestApi supports only UTF-8-encoded text payloads.
  • raWarnings - The warning messages reported when failonwarnings is turned on during API import.
  • raCreatedDate - The timestamp when the API was created.
  • raName - The API's name.
  • raVersion - A version identifier for the API.
  • raApiKeySource - The source of the API key for metering requests according to a usage plan. Valid values are: * HEADER to read the API key from the X-API-Key header of a request. * AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.
  • raId - The API's identifier. This identifier is unique across all of your APIs in API Gateway.
  • raPolicy - Method
  • raEndpointConfiguration - The endpoint configuration of this RestApi showing the endpoint types of the API.
  • raDescription - The API's description.

data RestAPI Source #

Represents a REST API.

Create an API

See: restAPI smart constructor.

Instances
Eq RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

(==) :: RestAPI -> RestAPI -> Bool #

(/=) :: RestAPI -> RestAPI -> Bool #

Data RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RestAPI -> c RestAPI #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RestAPI #

toConstr :: RestAPI -> Constr #

dataTypeOf :: RestAPI -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RestAPI) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RestAPI) #

gmapT :: (forall b. Data b => b -> b) -> RestAPI -> RestAPI #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RestAPI -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RestAPI -> r #

gmapQ :: (forall d. Data d => d -> u) -> RestAPI -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RestAPI -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RestAPI -> m RestAPI #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RestAPI -> m RestAPI #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RestAPI -> m RestAPI #

Read RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Show RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Generic RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Associated Types

type Rep RestAPI :: Type -> Type #

Methods

from :: RestAPI -> Rep RestAPI x #

to :: Rep RestAPI x -> RestAPI #

Hashable RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

hashWithSalt :: Int -> RestAPI -> Int #

hash :: RestAPI -> Int #

FromJSON RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

NFData RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

rnf :: RestAPI -> () #

type Rep RestAPI Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Response Lenses

raMinimumCompressionSize :: Lens' RestAPI (Maybe Int) Source #

A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.

raBinaryMediaTypes :: Lens' RestAPI [Text] Source #

The list of binary media types supported by the RestApi . By default, the RestApi supports only UTF-8-encoded text payloads.

raWarnings :: Lens' RestAPI [Text] Source #

The warning messages reported when failonwarnings is turned on during API import.

raCreatedDate :: Lens' RestAPI (Maybe UTCTime) Source #

The timestamp when the API was created.

raName :: Lens' RestAPI (Maybe Text) Source #

The API's name.

raVersion :: Lens' RestAPI (Maybe Text) Source #

A version identifier for the API.

raApiKeySource :: Lens' RestAPI (Maybe APIKeySourceType) Source #

The source of the API key for metering requests according to a usage plan. Valid values are: * HEADER to read the API key from the X-API-Key header of a request. * AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

raId :: Lens' RestAPI (Maybe Text) Source #

The API's identifier. This identifier is unique across all of your APIs in API Gateway.

raEndpointConfiguration :: Lens' RestAPI (Maybe EndpointConfiguration) Source #

The endpoint configuration of this RestApi showing the endpoint types of the API.

raDescription :: Lens' RestAPI (Maybe Text) Source #

The API's description.