@effect-aws/client-api-gateway-v2 1.10.0

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.
Files changed (53) hide show
  1. package/ApiGatewayV2ClientInstance/package.json +6 -0
  2. package/ApiGatewayV2Service/package.json +6 -0
  3. package/ApiGatewayV2ServiceConfig/package.json +6 -0
  4. package/Errors/package.json +6 -0
  5. package/LICENSE +19 -0
  6. package/README.md +58 -0
  7. package/dist/cjs/ApiGatewayV2ClientInstance.d.ts +24 -0
  8. package/dist/cjs/ApiGatewayV2ClientInstance.d.ts.map +1 -0
  9. package/dist/cjs/ApiGatewayV2ClientInstance.js +50 -0
  10. package/dist/cjs/ApiGatewayV2ClientInstance.js.map +1 -0
  11. package/dist/cjs/ApiGatewayV2Service.d.ts +330 -0
  12. package/dist/cjs/ApiGatewayV2Service.d.ts.map +1 -0
  13. package/dist/cjs/ApiGatewayV2Service.js +131 -0
  14. package/dist/cjs/ApiGatewayV2Service.js.map +1 -0
  15. package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts +25 -0
  16. package/dist/cjs/ApiGatewayV2ServiceConfig.d.ts.map +1 -0
  17. package/dist/cjs/ApiGatewayV2ServiceConfig.js +35 -0
  18. package/dist/cjs/ApiGatewayV2ServiceConfig.js.map +1 -0
  19. package/dist/cjs/Errors.d.ts +12 -0
  20. package/dist/cjs/Errors.d.ts.map +1 -0
  21. package/dist/cjs/Errors.js +13 -0
  22. package/dist/cjs/Errors.js.map +1 -0
  23. package/dist/cjs/index.d.ts +39 -0
  24. package/dist/cjs/index.d.ts.map +1 -0
  25. package/dist/cjs/index.js +56 -0
  26. package/dist/cjs/index.js.map +1 -0
  27. package/dist/dts/ApiGatewayV2ClientInstance.d.ts +24 -0
  28. package/dist/dts/ApiGatewayV2ClientInstance.d.ts.map +1 -0
  29. package/dist/dts/ApiGatewayV2Service.d.ts +330 -0
  30. package/dist/dts/ApiGatewayV2Service.d.ts.map +1 -0
  31. package/dist/dts/ApiGatewayV2ServiceConfig.d.ts +25 -0
  32. package/dist/dts/ApiGatewayV2ServiceConfig.d.ts.map +1 -0
  33. package/dist/dts/Errors.d.ts +12 -0
  34. package/dist/dts/Errors.d.ts.map +1 -0
  35. package/dist/dts/index.d.ts +39 -0
  36. package/dist/dts/index.d.ts.map +1 -0
  37. package/dist/esm/ApiGatewayV2ClientInstance.js +23 -0
  38. package/dist/esm/ApiGatewayV2ClientInstance.js.map +1 -0
  39. package/dist/esm/ApiGatewayV2Service.js +104 -0
  40. package/dist/esm/ApiGatewayV2Service.js.map +1 -0
  41. package/dist/esm/ApiGatewayV2ServiceConfig.js +31 -0
  42. package/dist/esm/ApiGatewayV2ServiceConfig.js.map +1 -0
  43. package/dist/esm/Errors.js +10 -0
  44. package/dist/esm/Errors.js.map +1 -0
  45. package/dist/esm/index.js +27 -0
  46. package/dist/esm/index.js.map +1 -0
  47. package/dist/esm/package.json +4 -0
  48. package/package.json +71 -0
  49. package/src/ApiGatewayV2ClientInstance.ts +33 -0
  50. package/src/ApiGatewayV2Service.ts +1170 -0
  51. package/src/ApiGatewayV2ServiceConfig.ts +52 -0
  52. package/src/Errors.ts +26 -0
  53. package/src/index.ts +44 -0
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/ApiGatewayV2ClientInstance.js",
3
+ "module": "../dist/esm/ApiGatewayV2ClientInstance.js",
4
+ "types": "../dist/dts/ApiGatewayV2ClientInstance.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/ApiGatewayV2Service.js",
3
+ "module": "../dist/esm/ApiGatewayV2Service.js",
4
+ "types": "../dist/dts/ApiGatewayV2Service.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/ApiGatewayV2ServiceConfig.js",
3
+ "module": "../dist/esm/ApiGatewayV2ServiceConfig.js",
4
+ "types": "../dist/dts/ApiGatewayV2ServiceConfig.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Errors.js",
3
+ "module": "../dist/esm/Errors.js",
4
+ "types": "../dist/dts/Errors.d.ts",
5
+ "sideEffects": []
6
+ }
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2025 Victor Korzunin
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # @effect-aws/client-api-gateway-v2
2
+
3
+ [![npm version](https://img.shields.io/npm/v/%40effect-aws%2Fclient-api-gateway-v2?color=brightgreen&label=npm%20package)](https://www.npmjs.com/package/@effect-aws/client-api-gateway-v2)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40effect-aws%2Fclient-api-gateway-v2)](https://www.npmjs.com/package/@effect-aws/client-api-gateway-v2)
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ npm install --save @effect-aws/client-api-gateway-v2
10
+ ```
11
+
12
+ ## Usage
13
+
14
+ With default ApiGatewayV2Client instance:
15
+
16
+ ```typescript
17
+ import { ApiGatewayV2 } from "@effect-aws/client-api-gateway-v2";
18
+
19
+ const program = ApiGatewayV2.getApi(args);
20
+
21
+ const result = pipe(
22
+ program,
23
+ Effect.provide(ApiGatewayV2.defaultLayer),
24
+ Effect.runPromise,
25
+ );
26
+ ```
27
+
28
+ With custom ApiGatewayV2Client instance:
29
+
30
+ ```typescript
31
+ import { ApiGatewayV2 } from "@effect-aws/client-api-gateway-v2";
32
+
33
+ const program = ApiGatewayV2.getApi(args);
34
+
35
+ const result = await pipe(
36
+ program,
37
+ Effect.provide(
38
+ ApiGatewayV2.baseLayer(() => new ApiGatewayV2Client({ region: "eu-central-1" })),
39
+ ),
40
+ Effect.runPromise,
41
+ );
42
+ ```
43
+
44
+ With custom ApiGatewayV2Client configuration:
45
+
46
+ ```typescript
47
+ import { ApiGatewayV2 } from "@effect-aws/client-api-gateway-v2";
48
+
49
+ const program = ApiGatewayV2.getApi(args);
50
+
51
+ const result = await pipe(
52
+ program,
53
+ Effect.provide(ApiGatewayV2.layer({ region: "eu-central-1" })),
54
+ Effect.runPromiseExit,
55
+ );
56
+ ```
57
+
58
+ or use `ApiGatewayV2.baseLayer((default) => new ApiGatewayV2Client({ ...default, region: "eu-central-1" }))`
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { ApiGatewayV2Client } from "@aws-sdk/client-apigatewayv2";
5
+ import { Context, Effect, Layer } from "effect";
6
+ declare const ApiGatewayV2ClientInstance_base: Context.TagClass<ApiGatewayV2ClientInstance, "@effect-aws/client-api-gateway-v2/ApiGatewayV2ClientInstance", ApiGatewayV2Client>;
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export declare class ApiGatewayV2ClientInstance extends ApiGatewayV2ClientInstance_base {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export declare const make: Effect.Effect<ApiGatewayV2Client, never, import("effect/Scope").Scope>;
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export declare const layer: Layer.Layer<ApiGatewayV2ClientInstance, never, never>;
23
+ export {};
24
+ //# sourceMappingURL=ApiGatewayV2ClientInstance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiGatewayV2ClientInstance.d.ts","sourceRoot":"","sources":["../../src/ApiGatewayV2ClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,0BAA2B,SAAQ,+BAEG;CAAG;AAEtD;;;GAGG;AACH,eAAO,MAAM,IAAI,wEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,uDAAiD,CAAC"}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.layer = exports.make = exports.ApiGatewayV2ClientInstance = void 0;
27
+ /**
28
+ * @since 1.0.0
29
+ */
30
+ const client_apigatewayv2_1 = require("@aws-sdk/client-apigatewayv2");
31
+ const effect_1 = require("effect");
32
+ const ApiGatewayV2ServiceConfig = __importStar(require("./ApiGatewayV2ServiceConfig.js"));
33
+ /**
34
+ * @since 1.0.0
35
+ * @category tags
36
+ */
37
+ class ApiGatewayV2ClientInstance extends effect_1.Context.Tag("@effect-aws/client-api-gateway-v2/ApiGatewayV2ClientInstance")() {
38
+ }
39
+ exports.ApiGatewayV2ClientInstance = ApiGatewayV2ClientInstance;
40
+ /**
41
+ * @since 1.0.0
42
+ * @category constructors
43
+ */
44
+ exports.make = effect_1.Effect.flatMap(ApiGatewayV2ServiceConfig.toApiGatewayV2ClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_apigatewayv2_1.ApiGatewayV2Client(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
45
+ /**
46
+ * @since 1.0.0
47
+ * @category layers
48
+ */
49
+ exports.layer = effect_1.Layer.scoped(ApiGatewayV2ClientInstance, exports.make);
50
+ //# sourceMappingURL=ApiGatewayV2ClientInstance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiGatewayV2ClientInstance.js","sourceRoot":"","sources":["../../src/ApiGatewayV2ClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,sEAAkE;AAClE,mCAAgD;AAChD,0FAA4E;AAE5E;;;GAGG;AACH,MAAa,0BAA2B,SAAQ,gBAAO,CAAC,GAAG,CACzD,8DAA8D,CAC/D,EAAkD;CAAG;AAFtD,gEAEsD;AAEtD;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,yBAAyB,CAAC,0BAA0B,EACpD,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,wCAAkB,CAAC,MAAM,CAAC,CAAC,EACjD,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,0BAA0B,EAAE,YAAI,CAAC,CAAC"}
@@ -0,0 +1,330 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { type ApiGatewayV2Client, type ApiGatewayV2ClientConfig, type CreateApiCommandInput, type CreateApiCommandOutput, type CreateApiMappingCommandInput, type CreateApiMappingCommandOutput, type CreateAuthorizerCommandInput, type CreateAuthorizerCommandOutput, type CreateDeploymentCommandInput, type CreateDeploymentCommandOutput, type CreateDomainNameCommandInput, type CreateDomainNameCommandOutput, type CreateIntegrationCommandInput, type CreateIntegrationCommandOutput, type CreateIntegrationResponseCommandInput, type CreateIntegrationResponseCommandOutput, type CreateModelCommandInput, type CreateModelCommandOutput, type CreateRouteCommandInput, type CreateRouteCommandOutput, type CreateRouteResponseCommandInput, type CreateRouteResponseCommandOutput, type CreateStageCommandInput, type CreateStageCommandOutput, type CreateVpcLinkCommandInput, type CreateVpcLinkCommandOutput, type DeleteAccessLogSettingsCommandInput, type DeleteAccessLogSettingsCommandOutput, type DeleteApiCommandInput, type DeleteApiCommandOutput, type DeleteApiMappingCommandInput, type DeleteApiMappingCommandOutput, type DeleteAuthorizerCommandInput, type DeleteAuthorizerCommandOutput, type DeleteCorsConfigurationCommandInput, type DeleteCorsConfigurationCommandOutput, type DeleteDeploymentCommandInput, type DeleteDeploymentCommandOutput, type DeleteDomainNameCommandInput, type DeleteDomainNameCommandOutput, type DeleteIntegrationCommandInput, type DeleteIntegrationCommandOutput, type DeleteIntegrationResponseCommandInput, type DeleteIntegrationResponseCommandOutput, type DeleteModelCommandInput, type DeleteModelCommandOutput, type DeleteRouteCommandInput, type DeleteRouteCommandOutput, type DeleteRouteRequestParameterCommandInput, type DeleteRouteRequestParameterCommandOutput, type DeleteRouteResponseCommandInput, type DeleteRouteResponseCommandOutput, type DeleteRouteSettingsCommandInput, type DeleteRouteSettingsCommandOutput, type DeleteStageCommandInput, type DeleteStageCommandOutput, type DeleteVpcLinkCommandInput, type DeleteVpcLinkCommandOutput, type ExportApiCommandInput, type ExportApiCommandOutput, type GetApiCommandInput, type GetApiCommandOutput, type GetApiMappingCommandInput, type GetApiMappingCommandOutput, type GetApiMappingsCommandInput, type GetApiMappingsCommandOutput, type GetApisCommandInput, type GetApisCommandOutput, type GetAuthorizerCommandInput, type GetAuthorizerCommandOutput, type GetAuthorizersCommandInput, type GetAuthorizersCommandOutput, type GetDeploymentCommandInput, type GetDeploymentCommandOutput, type GetDeploymentsCommandInput, type GetDeploymentsCommandOutput, type GetDomainNameCommandInput, type GetDomainNameCommandOutput, type GetDomainNamesCommandInput, type GetDomainNamesCommandOutput, type GetIntegrationCommandInput, type GetIntegrationCommandOutput, type GetIntegrationResponseCommandInput, type GetIntegrationResponseCommandOutput, type GetIntegrationResponsesCommandInput, type GetIntegrationResponsesCommandOutput, type GetIntegrationsCommandInput, type GetIntegrationsCommandOutput, type GetModelCommandInput, type GetModelCommandOutput, type GetModelsCommandInput, type GetModelsCommandOutput, type GetModelTemplateCommandInput, type GetModelTemplateCommandOutput, type GetRouteCommandInput, type GetRouteCommandOutput, type GetRouteResponseCommandInput, type GetRouteResponseCommandOutput, type GetRouteResponsesCommandInput, type GetRouteResponsesCommandOutput, type GetRoutesCommandInput, type GetRoutesCommandOutput, type GetStageCommandInput, type GetStageCommandOutput, type GetStagesCommandInput, type GetStagesCommandOutput, type GetTagsCommandInput, type GetTagsCommandOutput, type GetVpcLinkCommandInput, type GetVpcLinkCommandOutput, type GetVpcLinksCommandInput, type GetVpcLinksCommandOutput, type ImportApiCommandInput, type ImportApiCommandOutput, type ReimportApiCommandInput, type ReimportApiCommandOutput, type ResetAuthorizersCacheCommandInput, type ResetAuthorizersCacheCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateApiCommandInput, type UpdateApiCommandOutput, type UpdateApiMappingCommandInput, type UpdateApiMappingCommandOutput, type UpdateAuthorizerCommandInput, type UpdateAuthorizerCommandOutput, type UpdateDeploymentCommandInput, type UpdateDeploymentCommandOutput, type UpdateDomainNameCommandInput, type UpdateDomainNameCommandOutput, type UpdateIntegrationCommandInput, type UpdateIntegrationCommandOutput, type UpdateIntegrationResponseCommandInput, type UpdateIntegrationResponseCommandOutput, type UpdateModelCommandInput, type UpdateModelCommandOutput, type UpdateRouteCommandInput, type UpdateRouteCommandOutput, type UpdateRouteResponseCommandInput, type UpdateRouteResponseCommandOutput, type UpdateStageCommandInput, type UpdateStageCommandOutput, type UpdateVpcLinkCommandInput, type UpdateVpcLinkCommandOutput } from "@aws-sdk/client-apigatewayv2";
5
+ import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
6
+ import type { Cause } from "effect";
7
+ import { Effect, Layer } from "effect";
8
+ import * as Instance from "./ApiGatewayV2ClientInstance.js";
9
+ import type { AccessDeniedError, BadRequestError, ConflictError, NotFoundError, TooManyRequestsError } from "./Errors.js";
10
+ interface ApiGatewayV2Service$ {
11
+ readonly _: unique symbol;
12
+ /**
13
+ * @see {@link CreateApiCommand}
14
+ */
15
+ createApi(args: CreateApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateApiCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
16
+ /**
17
+ * @see {@link CreateApiMappingCommand}
18
+ */
19
+ createApiMapping(args: CreateApiMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateApiMappingCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
20
+ /**
21
+ * @see {@link CreateAuthorizerCommand}
22
+ */
23
+ createAuthorizer(args: CreateAuthorizerCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAuthorizerCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
24
+ /**
25
+ * @see {@link CreateDeploymentCommand}
26
+ */
27
+ createDeployment(args: CreateDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDeploymentCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
28
+ /**
29
+ * @see {@link CreateDomainNameCommand}
30
+ */
31
+ createDomainName(args: CreateDomainNameCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDomainNameCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
32
+ /**
33
+ * @see {@link CreateIntegrationCommand}
34
+ */
35
+ createIntegration(args: CreateIntegrationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateIntegrationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
36
+ /**
37
+ * @see {@link CreateIntegrationResponseCommand}
38
+ */
39
+ createIntegrationResponse(args: CreateIntegrationResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateIntegrationResponseCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
40
+ /**
41
+ * @see {@link CreateModelCommand}
42
+ */
43
+ createModel(args: CreateModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
44
+ /**
45
+ * @see {@link CreateRouteCommand}
46
+ */
47
+ createRoute(args: CreateRouteCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRouteCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
48
+ /**
49
+ * @see {@link CreateRouteResponseCommand}
50
+ */
51
+ createRouteResponse(args: CreateRouteResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRouteResponseCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
52
+ /**
53
+ * @see {@link CreateStageCommand}
54
+ */
55
+ createStage(args: CreateStageCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStageCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
56
+ /**
57
+ * @see {@link CreateVpcLinkCommand}
58
+ */
59
+ createVpcLink(args: CreateVpcLinkCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcLinkCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | TooManyRequestsError>;
60
+ /**
61
+ * @see {@link DeleteAccessLogSettingsCommand}
62
+ */
63
+ deleteAccessLogSettings(args: DeleteAccessLogSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAccessLogSettingsCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
64
+ /**
65
+ * @see {@link DeleteApiCommand}
66
+ */
67
+ deleteApi(args: DeleteApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteApiCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
68
+ /**
69
+ * @see {@link DeleteApiMappingCommand}
70
+ */
71
+ deleteApiMapping(args: DeleteApiMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteApiMappingCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
72
+ /**
73
+ * @see {@link DeleteAuthorizerCommand}
74
+ */
75
+ deleteAuthorizer(args: DeleteAuthorizerCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAuthorizerCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
76
+ /**
77
+ * @see {@link DeleteCorsConfigurationCommand}
78
+ */
79
+ deleteCorsConfiguration(args: DeleteCorsConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCorsConfigurationCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
80
+ /**
81
+ * @see {@link DeleteDeploymentCommand}
82
+ */
83
+ deleteDeployment(args: DeleteDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDeploymentCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
84
+ /**
85
+ * @see {@link DeleteDomainNameCommand}
86
+ */
87
+ deleteDomainName(args: DeleteDomainNameCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDomainNameCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
88
+ /**
89
+ * @see {@link DeleteIntegrationCommand}
90
+ */
91
+ deleteIntegration(args: DeleteIntegrationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteIntegrationCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
92
+ /**
93
+ * @see {@link DeleteIntegrationResponseCommand}
94
+ */
95
+ deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteIntegrationResponseCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
96
+ /**
97
+ * @see {@link DeleteModelCommand}
98
+ */
99
+ deleteModel(args: DeleteModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteModelCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
100
+ /**
101
+ * @see {@link DeleteRouteCommand}
102
+ */
103
+ deleteRoute(args: DeleteRouteCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRouteCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
104
+ /**
105
+ * @see {@link DeleteRouteRequestParameterCommand}
106
+ */
107
+ deleteRouteRequestParameter(args: DeleteRouteRequestParameterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRouteRequestParameterCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
108
+ /**
109
+ * @see {@link DeleteRouteResponseCommand}
110
+ */
111
+ deleteRouteResponse(args: DeleteRouteResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRouteResponseCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
112
+ /**
113
+ * @see {@link DeleteRouteSettingsCommand}
114
+ */
115
+ deleteRouteSettings(args: DeleteRouteSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRouteSettingsCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
116
+ /**
117
+ * @see {@link DeleteStageCommand}
118
+ */
119
+ deleteStage(args: DeleteStageCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStageCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
120
+ /**
121
+ * @see {@link DeleteVpcLinkCommand}
122
+ */
123
+ deleteVpcLink(args: DeleteVpcLinkCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcLinkCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
124
+ /**
125
+ * @see {@link ExportApiCommand}
126
+ */
127
+ exportApi(args: ExportApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExportApiCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
128
+ /**
129
+ * @see {@link GetApiCommand}
130
+ */
131
+ getApi(args: GetApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApiCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
132
+ /**
133
+ * @see {@link GetApiMappingCommand}
134
+ */
135
+ getApiMapping(args: GetApiMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApiMappingCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
136
+ /**
137
+ * @see {@link GetApiMappingsCommand}
138
+ */
139
+ getApiMappings(args: GetApiMappingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApiMappingsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
140
+ /**
141
+ * @see {@link GetApisCommand}
142
+ */
143
+ getApis(args: GetApisCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApisCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
144
+ /**
145
+ * @see {@link GetAuthorizerCommand}
146
+ */
147
+ getAuthorizer(args: GetAuthorizerCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAuthorizerCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
148
+ /**
149
+ * @see {@link GetAuthorizersCommand}
150
+ */
151
+ getAuthorizers(args: GetAuthorizersCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAuthorizersCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
152
+ /**
153
+ * @see {@link GetDeploymentCommand}
154
+ */
155
+ getDeployment(args: GetDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDeploymentCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
156
+ /**
157
+ * @see {@link GetDeploymentsCommand}
158
+ */
159
+ getDeployments(args: GetDeploymentsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDeploymentsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
160
+ /**
161
+ * @see {@link GetDomainNameCommand}
162
+ */
163
+ getDomainName(args: GetDomainNameCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDomainNameCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
164
+ /**
165
+ * @see {@link GetDomainNamesCommand}
166
+ */
167
+ getDomainNames(args: GetDomainNamesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDomainNamesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
168
+ /**
169
+ * @see {@link GetIntegrationCommand}
170
+ */
171
+ getIntegration(args: GetIntegrationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIntegrationCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
172
+ /**
173
+ * @see {@link GetIntegrationResponseCommand}
174
+ */
175
+ getIntegrationResponse(args: GetIntegrationResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIntegrationResponseCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
176
+ /**
177
+ * @see {@link GetIntegrationResponsesCommand}
178
+ */
179
+ getIntegrationResponses(args: GetIntegrationResponsesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIntegrationResponsesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
180
+ /**
181
+ * @see {@link GetIntegrationsCommand}
182
+ */
183
+ getIntegrations(args: GetIntegrationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIntegrationsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
184
+ /**
185
+ * @see {@link GetModelCommand}
186
+ */
187
+ getModel(args: GetModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
188
+ /**
189
+ * @see {@link GetModelTemplateCommand}
190
+ */
191
+ getModelTemplate(args: GetModelTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelTemplateCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
192
+ /**
193
+ * @see {@link GetModelsCommand}
194
+ */
195
+ getModels(args: GetModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
196
+ /**
197
+ * @see {@link GetRouteCommand}
198
+ */
199
+ getRoute(args: GetRouteCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRouteCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
200
+ /**
201
+ * @see {@link GetRouteResponseCommand}
202
+ */
203
+ getRouteResponse(args: GetRouteResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRouteResponseCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
204
+ /**
205
+ * @see {@link GetRouteResponsesCommand}
206
+ */
207
+ getRouteResponses(args: GetRouteResponsesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRouteResponsesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
208
+ /**
209
+ * @see {@link GetRoutesCommand}
210
+ */
211
+ getRoutes(args: GetRoutesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRoutesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
212
+ /**
213
+ * @see {@link GetStageCommand}
214
+ */
215
+ getStage(args: GetStageCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetStageCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
216
+ /**
217
+ * @see {@link GetStagesCommand}
218
+ */
219
+ getStages(args: GetStagesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetStagesCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
220
+ /**
221
+ * @see {@link GetTagsCommand}
222
+ */
223
+ getTags(args: GetTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTagsCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
224
+ /**
225
+ * @see {@link GetVpcLinkCommand}
226
+ */
227
+ getVpcLink(args: GetVpcLinkCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetVpcLinkCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
228
+ /**
229
+ * @see {@link GetVpcLinksCommand}
230
+ */
231
+ getVpcLinks(args: GetVpcLinksCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetVpcLinksCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | TooManyRequestsError>;
232
+ /**
233
+ * @see {@link ImportApiCommand}
234
+ */
235
+ importApi(args: ImportApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<ImportApiCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
236
+ /**
237
+ * @see {@link ReimportApiCommand}
238
+ */
239
+ reimportApi(args: ReimportApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReimportApiCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
240
+ /**
241
+ * @see {@link ResetAuthorizersCacheCommand}
242
+ */
243
+ resetAuthorizersCache(args: ResetAuthorizersCacheCommandInput, options?: HttpHandlerOptions): Effect.Effect<ResetAuthorizersCacheCommandOutput, Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError>;
244
+ /**
245
+ * @see {@link TagResourceCommand}
246
+ */
247
+ tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
248
+ /**
249
+ * @see {@link UntagResourceCommand}
250
+ */
251
+ untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
252
+ /**
253
+ * @see {@link UpdateApiCommand}
254
+ */
255
+ updateApi(args: UpdateApiCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateApiCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
256
+ /**
257
+ * @see {@link UpdateApiMappingCommand}
258
+ */
259
+ updateApiMapping(args: UpdateApiMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateApiMappingCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
260
+ /**
261
+ * @see {@link UpdateAuthorizerCommand}
262
+ */
263
+ updateAuthorizer(args: UpdateAuthorizerCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAuthorizerCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
264
+ /**
265
+ * @see {@link UpdateDeploymentCommand}
266
+ */
267
+ updateDeployment(args: UpdateDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDeploymentCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
268
+ /**
269
+ * @see {@link UpdateDomainNameCommand}
270
+ */
271
+ updateDomainName(args: UpdateDomainNameCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDomainNameCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
272
+ /**
273
+ * @see {@link UpdateIntegrationCommand}
274
+ */
275
+ updateIntegration(args: UpdateIntegrationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateIntegrationCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
276
+ /**
277
+ * @see {@link UpdateIntegrationResponseCommand}
278
+ */
279
+ updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateIntegrationResponseCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
280
+ /**
281
+ * @see {@link UpdateModelCommand}
282
+ */
283
+ updateModel(args: UpdateModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateModelCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
284
+ /**
285
+ * @see {@link UpdateRouteCommand}
286
+ */
287
+ updateRoute(args: UpdateRouteCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRouteCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
288
+ /**
289
+ * @see {@link UpdateRouteResponseCommand}
290
+ */
291
+ updateRouteResponse(args: UpdateRouteResponseCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRouteResponseCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
292
+ /**
293
+ * @see {@link UpdateStageCommand}
294
+ */
295
+ updateStage(args: UpdateStageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStageCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError>;
296
+ /**
297
+ * @see {@link UpdateVpcLinkCommand}
298
+ */
299
+ updateVpcLink(args: UpdateVpcLinkCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcLinkCommandOutput, Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError>;
300
+ }
301
+ /**
302
+ * @since 1.0.0
303
+ * @category constructors
304
+ */
305
+ export declare const makeApiGatewayV2Service: Effect.Effect<ApiGatewayV2Service$, never, Instance.ApiGatewayV2ClientInstance>;
306
+ declare const ApiGatewayV2Service_base: import("effect/Context").TagClass<ApiGatewayV2Service, "@effect-aws/client-api-gateway-v2/ApiGatewayV2Service", ApiGatewayV2Service$> & Effect.Tag.Proxy<ApiGatewayV2Service, ApiGatewayV2Service$> & {
307
+ use: <X>(body: (_: ApiGatewayV2Service$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, ApiGatewayV2Service | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, ApiGatewayV2Service> : Effect.Effect<X, never, ApiGatewayV2Service>;
308
+ };
309
+ /**
310
+ * @since 1.0.0
311
+ * @category models
312
+ */
313
+ export declare class ApiGatewayV2Service extends ApiGatewayV2Service_base {
314
+ static readonly defaultLayer: Layer.Layer<ApiGatewayV2Service, never, never>;
315
+ static readonly layer: (config: ApiGatewayV2Service.Config) => Layer.Layer<ApiGatewayV2Service, never, never>;
316
+ static readonly baseLayer: (evaluate: (defaultConfig: ApiGatewayV2ClientConfig) => ApiGatewayV2Client) => Layer.Layer<ApiGatewayV2Service, never, never>;
317
+ }
318
+ /**
319
+ * @since 1.0.0
320
+ */
321
+ export declare namespace ApiGatewayV2Service {
322
+ /**
323
+ * @since 1.0.0
324
+ */
325
+ interface Config extends Omit<ApiGatewayV2ClientConfig, "logger"> {
326
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
327
+ }
328
+ }
329
+ export {};
330
+ //# sourceMappingURL=ApiGatewayV2Service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiGatewayV2Service.d.ts","sourceRoot":"","sources":["../../src/ApiGatewayV2Service.ts"],"names":[],"mappings":"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"}