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.UpdateStage

Contents

Description

Changes information about a Stage resource.

Synopsis

Creating a Request

updateStage Source #

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

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

  • usPatchOperations - A list of update operations to be applied to the specified resource and in the order specified in this list.
  • usRestAPIId - [Required] The string identifier of the associated RestApi .
  • usStageName - [Required] The name of the Stage resource to change information about.

data UpdateStage Source #

Requests API Gateway to change information about a Stage resource.

See: updateStage smart constructor.

Instances
Eq UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Data UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Methods

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

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

toConstr :: UpdateStage -> Constr #

dataTypeOf :: UpdateStage -> DataType #

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

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

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

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

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

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

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

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

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

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

Read UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Show UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Generic UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Associated Types

type Rep UpdateStage :: Type -> Type #

Hashable UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

ToJSON UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

AWSRequest UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Associated Types

type Rs UpdateStage :: Type #

ToHeaders UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Methods

toHeaders :: UpdateStage -> [Header] #

ToPath UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

ToQuery UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

NFData UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Methods

rnf :: UpdateStage -> () #

type Rep UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

type Rep UpdateStage = D1 (MetaData "UpdateStage" "Network.AWS.APIGateway.UpdateStage" "amazonka-apigateway-1.6.1-BCCM2RP3l9Q2ENgHvKrj59" False) (C1 (MetaCons "UpdateStage'" PrefixI True) (S1 (MetaSel (Just "_usPatchOperations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [PatchOperation])) :*: (S1 (MetaSel (Just "_usRestAPIId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_usStageName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs UpdateStage Source # 
Instance details

Defined in Network.AWS.APIGateway.UpdateStage

Request Lenses

usPatchOperations :: Lens' UpdateStage [PatchOperation] Source #

A list of update operations to be applied to the specified resource and in the order specified in this list.

usRestAPIId :: Lens' UpdateStage Text Source #

Required
The string identifier of the associated RestApi .

usStageName :: Lens' UpdateStage Text Source #

Required
The name of the Stage resource to change information about.

Destructuring the Response

stage :: Stage Source #

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

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

  • sDeploymentId - The identifier of the Deployment that the stage points to.
  • sVariables - A map that defines the stage variables for a Stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+ .
  • sAccessLogSettings - Settings for logging access in this stage.
  • sDocumentationVersion - The version of the associated API documentation.
  • sClientCertificateId - The identifier of a client certificate for an API stage.
  • sCreatedDate - The timestamp when the stage was created.
  • sCacheClusterStatus - The status of the cache cluster for the stage, if enabled.
  • sMethodSettings - A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key below) are method paths defined as {resource_path}/{http_method} for an individual method override, or ** for overriding all methods in the stage.
  • sLastUpdatedDate - The timestamp when the stage last updated.
  • sCacheClusterSize - The size of the cache cluster for the stage, if enabled.
  • sCanarySettings - Settings for the canary deployment in this stage.
  • sCacheClusterEnabled - Specifies whether a cache cluster is enabled for the stage.
  • sStageName - The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway.
  • sDescription - The stage's description.
  • sTags - The collection of tags. Each tag element is associated with a given resource.

data Stage Source #

Represents a unique identifier for a version of a deployed RestApi that is callable by users.

Deploy an API

See: stage smart constructor.

Instances
Eq Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

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

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

Data Stage 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) -> Stage -> c Stage #

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

toConstr :: Stage -> Constr #

dataTypeOf :: Stage -> DataType #

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

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

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

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

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

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

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

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

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

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

Read Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Show Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

showsPrec :: Int -> Stage -> ShowS #

show :: Stage -> String #

showList :: [Stage] -> ShowS #

Generic Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Associated Types

type Rep Stage :: Type -> Type #

Methods

from :: Stage -> Rep Stage x #

to :: Rep Stage x -> Stage #

Hashable Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

hashWithSalt :: Int -> Stage -> Int #

hash :: Stage -> Int #

FromJSON Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

NFData Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

Methods

rnf :: Stage -> () #

type Rep Stage Source # 
Instance details

Defined in Network.AWS.APIGateway.Types.Product

type Rep Stage = D1 (MetaData "Stage" "Network.AWS.APIGateway.Types.Product" "amazonka-apigateway-1.6.1-BCCM2RP3l9Q2ENgHvKrj59" False) (C1 (MetaCons "Stage'" PrefixI True) (((S1 (MetaSel (Just "_sDeploymentId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_sVariables") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Map Text Text))) :*: S1 (MetaSel (Just "_sAccessLogSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AccessLogSettings)))) :*: ((S1 (MetaSel (Just "_sDocumentationVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_sClientCertificateId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_sCreatedDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_sCacheClusterStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe CacheClusterStatus))))) :*: (((S1 (MetaSel (Just "_sMethodSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Map Text MethodSetting))) :*: S1 (MetaSel (Just "_sLastUpdatedDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 (MetaSel (Just "_sCacheClusterSize") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe CacheClusterSize)) :*: S1 (MetaSel (Just "_sCanarySettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe CanarySettings)))) :*: ((S1 (MetaSel (Just "_sCacheClusterEnabled") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_sStageName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_sDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_sTags") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Map Text Text))))))))

Response Lenses

sDeploymentId :: Lens' Stage (Maybe Text) Source #

The identifier of the Deployment that the stage points to.

sVariables :: Lens' Stage (HashMap Text Text) Source #

A map that defines the stage variables for a Stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+ .

sAccessLogSettings :: Lens' Stage (Maybe AccessLogSettings) Source #

Settings for logging access in this stage.

sDocumentationVersion :: Lens' Stage (Maybe Text) Source #

The version of the associated API documentation.

sClientCertificateId :: Lens' Stage (Maybe Text) Source #

The identifier of a client certificate for an API stage.

sCreatedDate :: Lens' Stage (Maybe UTCTime) Source #

The timestamp when the stage was created.

sCacheClusterStatus :: Lens' Stage (Maybe CacheClusterStatus) Source #

The status of the cache cluster for the stage, if enabled.

sMethodSettings :: Lens' Stage (HashMap Text MethodSetting) Source #

A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key below) are method paths defined as {resource_path}/{http_method} for an individual method override, or ** for overriding all methods in the stage.

sLastUpdatedDate :: Lens' Stage (Maybe UTCTime) Source #

The timestamp when the stage last updated.

sCacheClusterSize :: Lens' Stage (Maybe CacheClusterSize) Source #

The size of the cache cluster for the stage, if enabled.

sCanarySettings :: Lens' Stage (Maybe CanarySettings) Source #

Settings for the canary deployment in this stage.

sCacheClusterEnabled :: Lens' Stage (Maybe Bool) Source #

Specifies whether a cache cluster is enabled for the stage.

sStageName :: Lens' Stage (Maybe Text) Source #

The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway.

sDescription :: Lens' Stage (Maybe Text) Source #

The stage's description.

sTags :: Lens' Stage (HashMap Text Text) Source #

The collection of tags. Each tag element is associated with a given resource.