Class: Aws::APIGateway::Types::GetExportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetExportRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
When making an API call, you may pass GetExportRequest data as a hash:
{
rest_api_id: "String", # required
stage_name: "String", # required
export_type: "String", # required
parameters: {
"String" => "String",
},
accepts: "String",
}
Request a new export of a RestApi for a particular Stage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accepts ⇒ String
The content-type of the export, for example ‘application/json`.
-
#export_type ⇒ String
[Required] The type of export.
-
#parameters ⇒ Hash<String,String>
A key-value map of query string parameters that specify properties of the export, depending on the requested ‘exportType`.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
-
#stage_name ⇒ String
[Required] The name of the Stage that will be exported.
Instance Attribute Details
#accepts ⇒ String
The content-type of the export, for example ‘application/json`. Currently `application/json` and `application/yaml` are supported for `exportType` of`oas30` and `swagger`. This should be specified in the `Accept` header for direct API requests.
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3554 class GetExportRequest < Struct.new( :rest_api_id, :stage_name, :export_type, :parameters, :accepts) SENSITIVE = [] include Aws::Structure end |
#export_type ⇒ String
[Required] The type of export. Acceptable values are ‘oas30’ for OpenAPI 3.0.x and ‘swagger’ for Swagger/OpenAPI 2.0.
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3554 class GetExportRequest < Struct.new( :rest_api_id, :stage_name, :export_type, :parameters, :accepts) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
A key-value map of query string parameters that specify properties of the export, depending on the requested ‘exportType`. For `exportType` `oas30` and `swagger`, any combination of the following parameters are supported: `extensions=’integrations’‘ or `extensions=’apigateway’‘ will export the API with x-amazon-apigateway-integration extensions. `extensions=’authorizers’‘ will export the API with x-amazon-apigateway-authorizer extensions. `postman` will export the API with Postman extensions, allowing for import to the Postman tool
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3554 class GetExportRequest < Struct.new( :rest_api_id, :stage_name, :export_type, :parameters, :accepts) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3554 class GetExportRequest < Struct.new( :rest_api_id, :stage_name, :export_type, :parameters, :accepts) SENSITIVE = [] include Aws::Structure end |
#stage_name ⇒ String
[Required] The name of the Stage that will be exported.
3554 3555 3556 3557 3558 3559 3560 3561 3562 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3554 class GetExportRequest < Struct.new( :rest_api_id, :stage_name, :export_type, :parameters, :accepts) SENSITIVE = [] include Aws::Structure end |