@openhi/constructs 0.0.125 → 0.0.126

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -7197,6 +7197,18 @@ var _OpenHiRestApiService = class _OpenHiRestApiService extends OpenHiService {
7197
7197
  integration: optionsIntegration,
7198
7198
  authorizer: noAuth
7199
7199
  });
7200
+ new import_aws_apigatewayv22.HttpRoute(this, "runtime-config-get-route", {
7201
+ httpApi: this.rootHttpApi,
7202
+ routeKey: import_aws_apigatewayv22.HttpRouteKey.with("/control/runtime-config", import_aws_apigatewayv22.HttpMethod.GET),
7203
+ integration,
7204
+ authorizer: noAuth
7205
+ });
7206
+ new import_aws_apigatewayv22.HttpRoute(this, "runtime-config-head-route", {
7207
+ httpApi: this.rootHttpApi,
7208
+ routeKey: import_aws_apigatewayv22.HttpRouteKey.with("/control/runtime-config", import_aws_apigatewayv22.HttpMethod.HEAD),
7209
+ integration,
7210
+ authorizer: noAuth
7211
+ });
7200
7212
  new import_aws_apigatewayv22.HttpRoute(this, "proxy-route-root", {
7201
7213
  httpApi: this.rootHttpApi,
7202
7214
  routeKey: import_aws_apigatewayv22.HttpRouteKey.with("/", import_aws_apigatewayv22.HttpMethod.ANY),