Class: Aws::APIGateway::Types::PutRestApiRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyString

The PUT request body containing external API definitions. Currently, only OpenAPI definition JSON/YAML files are supported. The maximum size of the API definition file is 6MB.

Returns:

  • (String)


4361
4362
4363
4364
4365
4366
4367
4368
4369
# File 'lib/aws-sdk-apigateway/types.rb', line 4361

class PutRestApiRequest < Struct.new(
  :rest_api_id,
  :mode,
  :fail_on_warnings,
  :parameters,
  :body)
  SENSITIVE = []
  include Aws::Structure
end

#fail_on_warningsBoolean

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

Returns:

  • (Boolean)


4361
4362
4363
4364
4365
4366
4367
4368
4369
# File 'lib/aws-sdk-apigateway/types.rb', line 4361

class PutRestApiRequest < Struct.new(
  :rest_api_id,
  :mode,
  :fail_on_warnings,
  :parameters,
  :body)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

The ‘mode` query parameter to specify the update mode. Valid values are “merge” and “overwrite”. By default, the update mode is “merge”.

Returns:

  • (String)


4361
4362
4363
4364
4365
4366
4367
4368
4369
# File 'lib/aws-sdk-apigateway/types.rb', line 4361

class PutRestApiRequest < Struct.new(
  :rest_api_id,
  :mode,
  :fail_on_warnings,
  :parameters,
  :body)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

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:///path/to/imported-api-body.json’‘.

Returns:

  • (Hash<String,String>)


4361
4362
4363
4364
4365
4366
4367
4368
4369
# File 'lib/aws-sdk-apigateway/types.rb', line 4361

class PutRestApiRequest < Struct.new(
  :rest_api_id,
  :mode,
  :fail_on_warnings,
  :parameters,
  :body)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


4361
4362
4363
4364
4365
4366
4367
4368
4369
# File 'lib/aws-sdk-apigateway/types.rb', line 4361

class PutRestApiRequest < Struct.new(
  :rest_api_id,
  :mode,
  :fail_on_warnings,
  :parameters,
  :body)
  SENSITIVE = []
  include Aws::Structure
end