├── .coveralls.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── _scripts ├── ApiGatewayCloudFormation.template ├── publish.sh └── upload-web.sh ├── examples ├── api-import-with-swagger.template ├── api-with-cors.template ├── api-with-domain-name.template └── api-with-models.template ├── lib ├── commands │ ├── api-authorizer.js │ ├── api-base-path-mapping.js │ ├── api-deploy.js │ ├── api-domain-name.js │ ├── api-import.js │ ├── api-method.js │ ├── api-model.js │ ├── api-resource.js │ └── rest-api.js ├── index.js └── service │ ├── api-authorizer │ ├── api-authorizer-event.js │ └── api-authorizer-service.js │ ├── api-base-path-mapping │ ├── api-base-path-mapping-event.js │ └── api-base-path-mapping-service.js │ ├── api-deploy │ ├── api-deploy-event.js │ └── api-deploy-service.js │ ├── api-domain-name │ ├── api-domain-name-event.js │ └── api-domain-name-service.js │ ├── api-import │ ├── api-import-event.js │ └── api-import-service.js │ ├── api-method │ ├── api-method-event.js │ └── api-method-service.js │ ├── api-model │ ├── api-model-event.js │ └── api-model-service.js │ ├── api-resource │ ├── api-resource-event.js │ └── api-resource-service.js │ ├── constants.js │ ├── cors │ ├── cors-service.js │ ├── get-cors-method-update-operations.js │ └── header-helper.js │ ├── json-schemas │ ├── api-authorizer-schema.json │ ├── api-base-path-mapping-schema.json │ ├── api-deploy-schema.json │ ├── api-domain-name-schema.json │ ├── api-import-schema.json │ ├── api-method-schema.json │ ├── api-model-schema.json │ ├── api-resource-schema.json │ └── rest-api-schema.json │ ├── patch-operations-helper.js │ ├── rest-api │ ├── rest-api-event.js │ └── rest-api-service.js │ └── util │ ├── api-gateway-retry-wrapper.js │ ├── certificate-parser.js │ ├── cfn-response.js │ ├── logger.js │ └── validator.js ├── package.json ├── tests ├── .eslintrc └── unit │ ├── commands │ ├── api-authorizer-unit-test.js │ ├── api-base-path-mapping-unit-test.js │ ├── api-deploy-unit-test.js │ ├── api-domain-name-unit-test.js │ ├── api-import-unit-test.js │ ├── api-method-unit-test.js │ ├── api-model-unit-test.js │ ├── api-resource-unit-test.js │ └── rest-api-unit-test.js │ ├── index-unit-test.js │ └── service │ ├── api-authorizer │ ├── api-authorizer-event-unit-test.js │ └── api-authorizer-service-unit-test.js │ ├── api-base-path-mapping │ ├── api-base-path-mapping-event-unit-test.js │ └── api-base-path-mapping-service-unit-test.js │ ├── api-deploy │ ├── api-deploy-event-unit-test.js │ └── api-deploy-service-unit-test.js │ ├── api-domain-name │ ├── api-domain-name-event-unit-test.js │ └── api-domain-name-service-unit-test.js │ ├── api-import │ ├── api-import-event-unit-test.js │ └── api-import-service-unit-test.js │ ├── api-method │ ├── api-method-event-unit-test.js │ ├── api-method-service-unit-test.js │ └── util.js │ ├── api-model │ ├── api-model-event-unit-test.js │ └── api-model-service-unit-test.js │ ├── api-resource │ ├── api-resource-event-unit-test.js │ └── api-resource-service-unit-test.js │ ├── cors │ ├── cors-service-unit-test.js │ ├── get-cors-method-update-operations-unit-test.js │ └── header-helper-unit-test.js │ ├── patch-operations-helper-unit-test.js │ ├── rest-api │ ├── rest-api-event-unit-test.js │ └── rest-api-service-unit-test.js │ └── util │ ├── api-gateway-retry-wrapper-unit-test.js │ ├── certificate-parser-unit-test.js │ └── validator-unit-test.js └── web ├── assets ├── apigatewaycloudformation.css ├── apigatewaycloudformation.js └── vendor │ ├── bootstrap-3.3.6 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── jquery-1.12.2.min.js ├── favicons ├── android-chrome-144x144.png ├── android-chrome-192x192.png ├── android-chrome-36x36.png ├── android-chrome-48x48.png ├── android-chrome-72x72.png ├── android-chrome-96x96.png ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── manifest.json ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png └── safari-pinned-tab.svg └── index.html /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | repo_token: wI4piUmcfzeHSNmpQ3JD9AwyegQbNxnFI -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/README.md -------------------------------------------------------------------------------- /_scripts/ApiGatewayCloudFormation.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/_scripts/ApiGatewayCloudFormation.template -------------------------------------------------------------------------------- /_scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/_scripts/publish.sh -------------------------------------------------------------------------------- /_scripts/upload-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/_scripts/upload-web.sh -------------------------------------------------------------------------------- /examples/api-import-with-swagger.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/examples/api-import-with-swagger.template -------------------------------------------------------------------------------- /examples/api-with-cors.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/examples/api-with-cors.template -------------------------------------------------------------------------------- /examples/api-with-domain-name.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/examples/api-with-domain-name.template -------------------------------------------------------------------------------- /examples/api-with-models.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/examples/api-with-models.template -------------------------------------------------------------------------------- /lib/commands/api-authorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-authorizer.js -------------------------------------------------------------------------------- /lib/commands/api-base-path-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-base-path-mapping.js -------------------------------------------------------------------------------- /lib/commands/api-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-deploy.js -------------------------------------------------------------------------------- /lib/commands/api-domain-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-domain-name.js -------------------------------------------------------------------------------- /lib/commands/api-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-import.js -------------------------------------------------------------------------------- /lib/commands/api-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-method.js -------------------------------------------------------------------------------- /lib/commands/api-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-model.js -------------------------------------------------------------------------------- /lib/commands/api-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/api-resource.js -------------------------------------------------------------------------------- /lib/commands/rest-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/commands/rest-api.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/service/api-authorizer/api-authorizer-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-authorizer/api-authorizer-event.js -------------------------------------------------------------------------------- /lib/service/api-authorizer/api-authorizer-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-authorizer/api-authorizer-service.js -------------------------------------------------------------------------------- /lib/service/api-base-path-mapping/api-base-path-mapping-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-base-path-mapping/api-base-path-mapping-event.js -------------------------------------------------------------------------------- /lib/service/api-base-path-mapping/api-base-path-mapping-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-base-path-mapping/api-base-path-mapping-service.js -------------------------------------------------------------------------------- /lib/service/api-deploy/api-deploy-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-deploy/api-deploy-event.js -------------------------------------------------------------------------------- /lib/service/api-deploy/api-deploy-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-deploy/api-deploy-service.js -------------------------------------------------------------------------------- /lib/service/api-domain-name/api-domain-name-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-domain-name/api-domain-name-event.js -------------------------------------------------------------------------------- /lib/service/api-domain-name/api-domain-name-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-domain-name/api-domain-name-service.js -------------------------------------------------------------------------------- /lib/service/api-import/api-import-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-import/api-import-event.js -------------------------------------------------------------------------------- /lib/service/api-import/api-import-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-import/api-import-service.js -------------------------------------------------------------------------------- /lib/service/api-method/api-method-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-method/api-method-event.js -------------------------------------------------------------------------------- /lib/service/api-method/api-method-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-method/api-method-service.js -------------------------------------------------------------------------------- /lib/service/api-model/api-model-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-model/api-model-event.js -------------------------------------------------------------------------------- /lib/service/api-model/api-model-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-model/api-model-service.js -------------------------------------------------------------------------------- /lib/service/api-resource/api-resource-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-resource/api-resource-event.js -------------------------------------------------------------------------------- /lib/service/api-resource/api-resource-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/api-resource/api-resource-service.js -------------------------------------------------------------------------------- /lib/service/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/constants.js -------------------------------------------------------------------------------- /lib/service/cors/cors-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/cors/cors-service.js -------------------------------------------------------------------------------- /lib/service/cors/get-cors-method-update-operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/cors/get-cors-method-update-operations.js -------------------------------------------------------------------------------- /lib/service/cors/header-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/cors/header-helper.js -------------------------------------------------------------------------------- /lib/service/json-schemas/api-authorizer-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-authorizer-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-base-path-mapping-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-base-path-mapping-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-deploy-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-deploy-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-domain-name-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-domain-name-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-import-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-import-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-method-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-method-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-model-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-model-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/api-resource-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/api-resource-schema.json -------------------------------------------------------------------------------- /lib/service/json-schemas/rest-api-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/json-schemas/rest-api-schema.json -------------------------------------------------------------------------------- /lib/service/patch-operations-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/patch-operations-helper.js -------------------------------------------------------------------------------- /lib/service/rest-api/rest-api-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/rest-api/rest-api-event.js -------------------------------------------------------------------------------- /lib/service/rest-api/rest-api-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/rest-api/rest-api-service.js -------------------------------------------------------------------------------- /lib/service/util/api-gateway-retry-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/util/api-gateway-retry-wrapper.js -------------------------------------------------------------------------------- /lib/service/util/certificate-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/util/certificate-parser.js -------------------------------------------------------------------------------- /lib/service/util/cfn-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/util/cfn-response.js -------------------------------------------------------------------------------- /lib/service/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/util/logger.js -------------------------------------------------------------------------------- /lib/service/util/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/lib/service/util/validator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/package.json -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/unit/commands/api-authorizer-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-authorizer-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-base-path-mapping-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-base-path-mapping-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-deploy-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-deploy-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-domain-name-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-domain-name-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-import-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-import-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-method-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-method-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-model-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-model-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/api-resource-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/api-resource-unit-test.js -------------------------------------------------------------------------------- /tests/unit/commands/rest-api-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/commands/rest-api-unit-test.js -------------------------------------------------------------------------------- /tests/unit/index-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/index-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-authorizer/api-authorizer-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-authorizer/api-authorizer-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-authorizer/api-authorizer-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-authorizer/api-authorizer-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-base-path-mapping/api-base-path-mapping-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-base-path-mapping/api-base-path-mapping-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-base-path-mapping/api-base-path-mapping-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-base-path-mapping/api-base-path-mapping-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-deploy/api-deploy-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-deploy/api-deploy-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-deploy/api-deploy-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-deploy/api-deploy-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-domain-name/api-domain-name-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-domain-name/api-domain-name-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-domain-name/api-domain-name-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-domain-name/api-domain-name-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-import/api-import-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-import/api-import-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-import/api-import-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-import/api-import-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-method/api-method-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-method/api-method-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-method/api-method-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-method/api-method-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-method/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-method/util.js -------------------------------------------------------------------------------- /tests/unit/service/api-model/api-model-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-model/api-model-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-model/api-model-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-model/api-model-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-resource/api-resource-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-resource/api-resource-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/api-resource/api-resource-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/api-resource/api-resource-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/cors/cors-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/cors/cors-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/cors/get-cors-method-update-operations-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/cors/get-cors-method-update-operations-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/cors/header-helper-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/cors/header-helper-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/patch-operations-helper-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/patch-operations-helper-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/rest-api/rest-api-event-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/rest-api/rest-api-event-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/rest-api/rest-api-service-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/rest-api/rest-api-service-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/util/api-gateway-retry-wrapper-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/util/api-gateway-retry-wrapper-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/util/certificate-parser-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/util/certificate-parser-unit-test.js -------------------------------------------------------------------------------- /tests/unit/service/util/validator-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/tests/unit/service/util/validator-unit-test.js -------------------------------------------------------------------------------- /web/assets/apigatewaycloudformation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/apigatewaycloudformation.css -------------------------------------------------------------------------------- /web/assets/apigatewaycloudformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/apigatewaycloudformation.js -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap.css.map -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/js/bootstrap.js -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap-3.3.6/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/bootstrap-3.3.6/js/npm.js -------------------------------------------------------------------------------- /web/assets/vendor/jquery-1.12.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/assets/vendor/jquery-1.12.2.min.js -------------------------------------------------------------------------------- /web/favicons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-144x144.png -------------------------------------------------------------------------------- /web/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /web/favicons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-36x36.png -------------------------------------------------------------------------------- /web/favicons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-48x48.png -------------------------------------------------------------------------------- /web/favicons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-72x72.png -------------------------------------------------------------------------------- /web/favicons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/android-chrome-96x96.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /web/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /web/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/browserconfig.xml -------------------------------------------------------------------------------- /web/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /web/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /web/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /web/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/favicon.ico -------------------------------------------------------------------------------- /web/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/manifest.json -------------------------------------------------------------------------------- /web/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /web/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /web/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /web/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /web/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /web/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlnordenfelt/aws-api-gateway-for-cloudformation/HEAD/web/index.html --------------------------------------------------------------------------------