Import Rest Api
| apigateway_import_rest_api | R Documentation |
A feature of the API Gateway control service for creating a new API from an external API definition file¶
Description¶
A feature of the API Gateway control service for creating a new API from an external API definition file.
Usage¶
apigateway_import_rest_api(failOnWarnings, parameters, body)
Arguments¶
failOnWarnings |
A query parameter to indicate whether to rollback the API
creation ( |
parameters |
A key-value map of context-specific query string parameters specifying the behavior of different API importing operations. The following shows operation-specific parameters and their supported values. To exclude DocumentationParts from the import, set
To configure the endpoint type, set To handle imported |
body |
[required] The POST 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. |
Value¶
A list with the following syntax:
list(
id = "string",
name = "string",
description = "string",
createdDate = as.POSIXct(
"2015-01-01"
),
version = "string",
warnings = list(
"string"
),
binaryMediaTypes = list(
"string"
),
minimumCompressionSize = 123,
apiKeySource = "HEADER"|"AUTHORIZER",
endpointConfiguration = list(
types = list(
"REGIONAL"|"EDGE"|"PRIVATE"
),
ipAddressType = "ipv4"|"dualstack",
vpcEndpointIds = list(
"string"
)
),
policy = "string",
tags = list(
"string"
),
disableExecuteApiEndpoint = TRUE|FALSE,
rootResourceId = "string",
securityPolicy = "TLS_1_0"|"TLS_1_2"|"SecurityPolicy_TLS13_1_3_2025_09"|"SecurityPolicy_TLS13_1_3_FIPS_2025_09"|"SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09"|"SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09"|"SecurityPolicy_TLS13_1_2_FIPS_PFS_PQ_2025_09"|"SecurityPolicy_TLS13_1_2_PQ_2025_09"|"SecurityPolicy_TLS13_1_2_2021_06"|"SecurityPolicy_TLS13_2025_EDGE"|"SecurityPolicy_TLS12_PFS_2025_EDGE"|"SecurityPolicy_TLS12_2018_EDGE",
endpointAccessMode = "BASIC"|"STRICT",
apiStatus = "UPDATING"|"AVAILABLE"|"PENDING"|"FAILED",
apiStatusMessage = "string"
)
Request syntax¶
svc$import_rest_api(
failOnWarnings = TRUE|FALSE,
parameters = list(
"string"
),
body = raw
)