openapix
openapix copied to clipboard
Combine the power of AWS CDK & OpenAPI YAML Schema Definitions
Bumps [cacheable-request](https://github.com/jaredwray/cacheable-request) from 10.2.2 to 10.2.7. Release notes Sourced from cacheable-request's releases. v10.2.6 Fix for memory leak on Listeners The listener was not being removed on response and just error...
Bumps [yaml](https://github.com/eemeli/yaml) to 2.2.2 and updates ancestor dependency [projen](https://github.com/projen/projen). These dependencies need to be updated together. Updates `yaml` from 2.1.3 to 2.2.2 Release notes Sourced from yaml's releases. v2.2.2 This...
Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1. Commits 2449650 Update mocha 560b2d8 Don't use regex to trim whitespace b1bdb92 Remove linting package zoo c20dc7e Cache 308 See full diff in compare...
If a global security is defined, it will be [applied](https://github.com/alma-cdk/openapix/blob/f4ec29a282bea3bc0cb6cf97eeabf182523bc9c5/src/api/definition.ts#L99) to every endpoint. The global security should be allowed to be overridden at operation level.
Stages
Is there any current way to configure the API GateWay stages and implement lambda function aliases? I have not been able to find anything regarding this in the documentation. And...
`SpecRestApi` allows specifying an S3 path for the [`apiDefinition`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_apigateway.ApiDefinition.html). Is it possible to support this as a source?
Hi, I know that when we want to add an API key to an API Gateway method, we can do so by passing `apiKeyRequired: true` to `addMethod` in [@aws-cdk/aws-apigateway.](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_apigateway-readme.html) ```...
Please support IAM auth: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-swagger-extensions-auth.html
I am trying to use openapix to build an AWS API Gateway API from a source OpenAPI 3 file. I passing in my paths as a dict object (since I...
Given I have multiple APIs and API paths I would like to load multiple yaml files and have openapix merge them. For example ``` const api = new openapix.Api(this, 'Hello-API',...