@aws-sdk/client-dsql 3.705.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 (143) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +294 -0
  3. package/dist-cjs/DSQL.js +31 -0
  4. package/dist-cjs/DSQLClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateClusterCommand.js +26 -0
  8. package/dist-cjs/commands/CreateMultiRegionClustersCommand.js +26 -0
  9. package/dist-cjs/commands/DeleteClusterCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteMultiRegionClustersCommand.js +26 -0
  11. package/dist-cjs/commands/GetClusterCommand.js +26 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +26 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  16. package/dist-cjs/commands/UpdateClusterCommand.js +26 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  20. package/dist-cjs/endpoint/ruleset.js +7 -0
  21. package/dist-cjs/extensionConfiguration.js +2 -0
  22. package/dist-cjs/index.js +12 -0
  23. package/dist-cjs/models/DSQLServiceException.js +12 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +128 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListClustersPaginator.js +7 -0
  28. package/dist-cjs/pagination/index.js +5 -0
  29. package/dist-cjs/protocols/Aws_restJson1.js +467 -0
  30. package/dist-cjs/runtimeConfig.browser.js +39 -0
  31. package/dist-cjs/runtimeConfig.js +50 -0
  32. package/dist-cjs/runtimeConfig.native.js +15 -0
  33. package/dist-cjs/runtimeConfig.shared.js +34 -0
  34. package/dist-cjs/runtimeExtensions.js +25 -0
  35. package/dist-cjs/waiters/index.js +5 -0
  36. package/dist-cjs/waiters/waitForClusterActive.js +36 -0
  37. package/dist-cjs/waiters/waitForClusterNotExists.js +30 -0
  38. package/dist-es/DSQL.js +27 -0
  39. package/dist-es/DSQLClient.js +46 -0
  40. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  41. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  42. package/dist-es/commands/CreateClusterCommand.js +22 -0
  43. package/dist-es/commands/CreateMultiRegionClustersCommand.js +22 -0
  44. package/dist-es/commands/DeleteClusterCommand.js +22 -0
  45. package/dist-es/commands/DeleteMultiRegionClustersCommand.js +22 -0
  46. package/dist-es/commands/GetClusterCommand.js +22 -0
  47. package/dist-es/commands/ListClustersCommand.js +22 -0
  48. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  49. package/dist-es/commands/TagResourceCommand.js +22 -0
  50. package/dist-es/commands/UntagResourceCommand.js +22 -0
  51. package/dist-es/commands/UpdateClusterCommand.js +22 -0
  52. package/dist-es/commands/index.js +10 -0
  53. package/dist-es/endpoint/EndpointParameters.js +12 -0
  54. package/dist-es/endpoint/endpointResolver.js +14 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +7 -0
  58. package/dist-es/models/DSQLServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +118 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListClustersPaginator.js +4 -0
  63. package/dist-es/pagination/index.js +2 -0
  64. package/dist-es/protocols/Aws_restJson1.js +444 -0
  65. package/dist-es/runtimeConfig.browser.js +34 -0
  66. package/dist-es/runtimeConfig.js +45 -0
  67. package/dist-es/runtimeConfig.native.js +11 -0
  68. package/dist-es/runtimeConfig.shared.js +30 -0
  69. package/dist-es/runtimeExtensions.js +21 -0
  70. package/dist-es/waiters/index.js +2 -0
  71. package/dist-es/waiters/waitForClusterActive.js +31 -0
  72. package/dist-es/waiters/waitForClusterNotExists.js +25 -0
  73. package/dist-types/DSQL.d.ts +91 -0
  74. package/dist-types/DSQLClient.d.ts +188 -0
  75. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  76. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  77. package/dist-types/commands/CreateClusterCommand.d.ts +98 -0
  78. package/dist-types/commands/CreateMultiRegionClustersCommand.d.ts +107 -0
  79. package/dist-types/commands/DeleteClusterCommand.d.ts +95 -0
  80. package/dist-types/commands/DeleteMultiRegionClustersCommand.d.ts +91 -0
  81. package/dist-types/commands/GetClusterCommand.d.ts +95 -0
  82. package/dist-types/commands/ListClustersCommand.d.ts +94 -0
  83. package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
  84. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  85. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  86. package/dist-types/commands/UpdateClusterCommand.d.ts +100 -0
  87. package/dist-types/commands/index.d.ts +10 -0
  88. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  90. package/dist-types/endpoint/ruleset.d.ts +2 -0
  91. package/dist-types/extensionConfiguration.d.ts +9 -0
  92. package/dist-types/index.d.ts +24 -0
  93. package/dist-types/models/DSQLServiceException.d.ts +14 -0
  94. package/dist-types/models/index.d.ts +1 -0
  95. package/dist-types/models/models_0.d.ts +624 -0
  96. package/dist-types/pagination/Interfaces.d.ts +8 -0
  97. package/dist-types/pagination/ListClustersPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +2 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +92 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  101. package/dist-types/runtimeConfig.d.ts +48 -0
  102. package/dist-types/runtimeConfig.native.d.ts +47 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/DSQL.d.ts +177 -0
  106. package/dist-types/ts3.4/DSQLClient.d.ts +178 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  109. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/CreateMultiRegionClustersCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/DeleteMultiRegionClustersCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +47 -0
  114. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  117. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  118. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  120. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  121. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  122. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  123. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  124. package/dist-types/ts3.4/index.d.ts +10 -0
  125. package/dist-types/ts3.4/models/DSQLServiceException.d.ts +9 -0
  126. package/dist-types/ts3.4/models/index.d.ts +1 -0
  127. package/dist-types/ts3.4/models/models_0.d.ts +181 -0
  128. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  129. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  131. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
  132. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  133. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  134. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  135. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  136. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  137. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  138. package/dist-types/ts3.4/waiters/waitForClusterActive.d.ts +11 -0
  139. package/dist-types/ts3.4/waiters/waitForClusterNotExists.d.ts +11 -0
  140. package/dist-types/waiters/index.d.ts +2 -0
  141. package/dist-types/waiters/waitForClusterActive.d.ts +14 -0
  142. package/dist-types/waiters/waitForClusterNotExists.d.ts +14 -0
  143. package/package.json +104 -0
@@ -0,0 +1,92 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
4
+ import { CreateMultiRegionClustersCommandInput, CreateMultiRegionClustersCommandOutput } from "../commands/CreateMultiRegionClustersCommand";
5
+ import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
6
+ import { DeleteMultiRegionClustersCommandInput, DeleteMultiRegionClustersCommandOutput } from "../commands/DeleteMultiRegionClustersCommand";
7
+ import { GetClusterCommandInput, GetClusterCommandOutput } from "../commands/GetClusterCommand";
8
+ import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
+ import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
13
+ /**
14
+ * serializeAws_restJson1CreateClusterCommand
15
+ */
16
+ export declare const se_CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ /**
18
+ * serializeAws_restJson1CreateMultiRegionClustersCommand
19
+ */
20
+ export declare const se_CreateMultiRegionClustersCommand: (input: CreateMultiRegionClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ /**
22
+ * serializeAws_restJson1DeleteClusterCommand
23
+ */
24
+ export declare const se_DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ /**
26
+ * serializeAws_restJson1DeleteMultiRegionClustersCommand
27
+ */
28
+ export declare const se_DeleteMultiRegionClustersCommand: (input: DeleteMultiRegionClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ /**
30
+ * serializeAws_restJson1GetClusterCommand
31
+ */
32
+ export declare const se_GetClusterCommand: (input: GetClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ /**
34
+ * serializeAws_restJson1ListClustersCommand
35
+ */
36
+ export declare const se_ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ /**
38
+ * serializeAws_restJson1ListTagsForResourceCommand
39
+ */
40
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ /**
42
+ * serializeAws_restJson1TagResourceCommand
43
+ */
44
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ /**
46
+ * serializeAws_restJson1UntagResourceCommand
47
+ */
48
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ /**
50
+ * serializeAws_restJson1UpdateClusterCommand
51
+ */
52
+ export declare const se_UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * deserializeAws_restJson1CreateClusterCommand
55
+ */
56
+ export declare const de_CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
57
+ /**
58
+ * deserializeAws_restJson1CreateMultiRegionClustersCommand
59
+ */
60
+ export declare const de_CreateMultiRegionClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMultiRegionClustersCommandOutput>;
61
+ /**
62
+ * deserializeAws_restJson1DeleteClusterCommand
63
+ */
64
+ export declare const de_DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
65
+ /**
66
+ * deserializeAws_restJson1DeleteMultiRegionClustersCommand
67
+ */
68
+ export declare const de_DeleteMultiRegionClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMultiRegionClustersCommandOutput>;
69
+ /**
70
+ * deserializeAws_restJson1GetClusterCommand
71
+ */
72
+ export declare const de_GetClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCommandOutput>;
73
+ /**
74
+ * deserializeAws_restJson1ListClustersCommand
75
+ */
76
+ export declare const de_ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
77
+ /**
78
+ * deserializeAws_restJson1ListTagsForResourceCommand
79
+ */
80
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
81
+ /**
82
+ * deserializeAws_restJson1TagResourceCommand
83
+ */
84
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
85
+ /**
86
+ * deserializeAws_restJson1UntagResourceCommand
87
+ */
88
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
89
+ /**
90
+ * deserializeAws_restJson1UpdateClusterCommand
91
+ */
92
+ export declare const de_UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
@@ -0,0 +1,48 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { DSQLClientConfig } from "./DSQLClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DSQLClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DSQLHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,48 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { DSQLClientConfig } from "./DSQLClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DSQLClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
+ apiVersion: string;
22
+ cacheMiddleware?: boolean | undefined;
23
+ urlParser: import("@smithy/types").UrlParser;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: string | Uint8Array) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: string | Uint8Array) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DSQLHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,47 @@
1
+ import { DSQLClientConfig } from "./DSQLClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DSQLClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean | undefined;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: string | Uint8Array) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: string | Uint8Array) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
24
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ maxAttempts: number | import("@smithy/types").Provider<number>;
26
+ retryMode: string | import("@smithy/types").Provider<string>;
27
+ logger: import("@smithy/types").Logger;
28
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
29
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
30
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ serviceConfiguredEndpoint?: undefined;
39
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
40
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DSQLHttpAuthSchemeProvider;
41
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
42
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
43
+ signingEscapePath?: boolean | undefined;
44
+ systemClockOffset?: number | undefined;
45
+ signingRegion?: string | undefined;
46
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
47
+ };
@@ -0,0 +1,21 @@
1
+ import { DSQLClientConfig } from "./DSQLClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DSQLClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DSQLHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { DSQLExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: DSQLExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,177 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateClusterCommandInput,
4
+ CreateClusterCommandOutput,
5
+ } from "./commands/CreateClusterCommand";
6
+ import {
7
+ CreateMultiRegionClustersCommandInput,
8
+ CreateMultiRegionClustersCommandOutput,
9
+ } from "./commands/CreateMultiRegionClustersCommand";
10
+ import {
11
+ DeleteClusterCommandInput,
12
+ DeleteClusterCommandOutput,
13
+ } from "./commands/DeleteClusterCommand";
14
+ import {
15
+ DeleteMultiRegionClustersCommandInput,
16
+ DeleteMultiRegionClustersCommandOutput,
17
+ } from "./commands/DeleteMultiRegionClustersCommand";
18
+ import {
19
+ GetClusterCommandInput,
20
+ GetClusterCommandOutput,
21
+ } from "./commands/GetClusterCommand";
22
+ import {
23
+ ListClustersCommandInput,
24
+ ListClustersCommandOutput,
25
+ } from "./commands/ListClustersCommand";
26
+ import {
27
+ ListTagsForResourceCommandInput,
28
+ ListTagsForResourceCommandOutput,
29
+ } from "./commands/ListTagsForResourceCommand";
30
+ import {
31
+ TagResourceCommandInput,
32
+ TagResourceCommandOutput,
33
+ } from "./commands/TagResourceCommand";
34
+ import {
35
+ UntagResourceCommandInput,
36
+ UntagResourceCommandOutput,
37
+ } from "./commands/UntagResourceCommand";
38
+ import {
39
+ UpdateClusterCommandInput,
40
+ UpdateClusterCommandOutput,
41
+ } from "./commands/UpdateClusterCommand";
42
+ import { DSQLClient } from "./DSQLClient";
43
+ export interface DSQL {
44
+ createCluster(): Promise<CreateClusterCommandOutput>;
45
+ createCluster(
46
+ args: CreateClusterCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<CreateClusterCommandOutput>;
49
+ createCluster(
50
+ args: CreateClusterCommandInput,
51
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
52
+ ): void;
53
+ createCluster(
54
+ args: CreateClusterCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
57
+ ): void;
58
+ createMultiRegionClusters(
59
+ args: CreateMultiRegionClustersCommandInput,
60
+ options?: __HttpHandlerOptions
61
+ ): Promise<CreateMultiRegionClustersCommandOutput>;
62
+ createMultiRegionClusters(
63
+ args: CreateMultiRegionClustersCommandInput,
64
+ cb: (err: any, data?: CreateMultiRegionClustersCommandOutput) => void
65
+ ): void;
66
+ createMultiRegionClusters(
67
+ args: CreateMultiRegionClustersCommandInput,
68
+ options: __HttpHandlerOptions,
69
+ cb: (err: any, data?: CreateMultiRegionClustersCommandOutput) => void
70
+ ): void;
71
+ deleteCluster(
72
+ args: DeleteClusterCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<DeleteClusterCommandOutput>;
75
+ deleteCluster(
76
+ args: DeleteClusterCommandInput,
77
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
78
+ ): void;
79
+ deleteCluster(
80
+ args: DeleteClusterCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
83
+ ): void;
84
+ deleteMultiRegionClusters(
85
+ args: DeleteMultiRegionClustersCommandInput,
86
+ options?: __HttpHandlerOptions
87
+ ): Promise<DeleteMultiRegionClustersCommandOutput>;
88
+ deleteMultiRegionClusters(
89
+ args: DeleteMultiRegionClustersCommandInput,
90
+ cb: (err: any, data?: DeleteMultiRegionClustersCommandOutput) => void
91
+ ): void;
92
+ deleteMultiRegionClusters(
93
+ args: DeleteMultiRegionClustersCommandInput,
94
+ options: __HttpHandlerOptions,
95
+ cb: (err: any, data?: DeleteMultiRegionClustersCommandOutput) => void
96
+ ): void;
97
+ getCluster(
98
+ args: GetClusterCommandInput,
99
+ options?: __HttpHandlerOptions
100
+ ): Promise<GetClusterCommandOutput>;
101
+ getCluster(
102
+ args: GetClusterCommandInput,
103
+ cb: (err: any, data?: GetClusterCommandOutput) => void
104
+ ): void;
105
+ getCluster(
106
+ args: GetClusterCommandInput,
107
+ options: __HttpHandlerOptions,
108
+ cb: (err: any, data?: GetClusterCommandOutput) => void
109
+ ): void;
110
+ listClusters(): Promise<ListClustersCommandOutput>;
111
+ listClusters(
112
+ args: ListClustersCommandInput,
113
+ options?: __HttpHandlerOptions
114
+ ): Promise<ListClustersCommandOutput>;
115
+ listClusters(
116
+ args: ListClustersCommandInput,
117
+ cb: (err: any, data?: ListClustersCommandOutput) => void
118
+ ): void;
119
+ listClusters(
120
+ args: ListClustersCommandInput,
121
+ options: __HttpHandlerOptions,
122
+ cb: (err: any, data?: ListClustersCommandOutput) => void
123
+ ): void;
124
+ listTagsForResource(
125
+ args: ListTagsForResourceCommandInput,
126
+ options?: __HttpHandlerOptions
127
+ ): Promise<ListTagsForResourceCommandOutput>;
128
+ listTagsForResource(
129
+ args: ListTagsForResourceCommandInput,
130
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
131
+ ): void;
132
+ listTagsForResource(
133
+ args: ListTagsForResourceCommandInput,
134
+ options: __HttpHandlerOptions,
135
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
136
+ ): void;
137
+ tagResource(
138
+ args: TagResourceCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<TagResourceCommandOutput>;
141
+ tagResource(
142
+ args: TagResourceCommandInput,
143
+ cb: (err: any, data?: TagResourceCommandOutput) => void
144
+ ): void;
145
+ tagResource(
146
+ args: TagResourceCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: TagResourceCommandOutput) => void
149
+ ): void;
150
+ untagResource(
151
+ args: UntagResourceCommandInput,
152
+ options?: __HttpHandlerOptions
153
+ ): Promise<UntagResourceCommandOutput>;
154
+ untagResource(
155
+ args: UntagResourceCommandInput,
156
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
157
+ ): void;
158
+ untagResource(
159
+ args: UntagResourceCommandInput,
160
+ options: __HttpHandlerOptions,
161
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
162
+ ): void;
163
+ updateCluster(
164
+ args: UpdateClusterCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<UpdateClusterCommandOutput>;
167
+ updateCluster(
168
+ args: UpdateClusterCommandInput,
169
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
170
+ ): void;
171
+ updateCluster(
172
+ args: UpdateClusterCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
175
+ ): void;
176
+ }
177
+ export declare class DSQL extends DSQLClient implements DSQL {}
@@ -0,0 +1,178 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateClusterCommandInput,
50
+ CreateClusterCommandOutput,
51
+ } from "./commands/CreateClusterCommand";
52
+ import {
53
+ CreateMultiRegionClustersCommandInput,
54
+ CreateMultiRegionClustersCommandOutput,
55
+ } from "./commands/CreateMultiRegionClustersCommand";
56
+ import {
57
+ DeleteClusterCommandInput,
58
+ DeleteClusterCommandOutput,
59
+ } from "./commands/DeleteClusterCommand";
60
+ import {
61
+ DeleteMultiRegionClustersCommandInput,
62
+ DeleteMultiRegionClustersCommandOutput,
63
+ } from "./commands/DeleteMultiRegionClustersCommand";
64
+ import {
65
+ GetClusterCommandInput,
66
+ GetClusterCommandOutput,
67
+ } from "./commands/GetClusterCommand";
68
+ import {
69
+ ListClustersCommandInput,
70
+ ListClustersCommandOutput,
71
+ } from "./commands/ListClustersCommand";
72
+ import {
73
+ ListTagsForResourceCommandInput,
74
+ ListTagsForResourceCommandOutput,
75
+ } from "./commands/ListTagsForResourceCommand";
76
+ import {
77
+ TagResourceCommandInput,
78
+ TagResourceCommandOutput,
79
+ } from "./commands/TagResourceCommand";
80
+ import {
81
+ UntagResourceCommandInput,
82
+ UntagResourceCommandOutput,
83
+ } from "./commands/UntagResourceCommand";
84
+ import {
85
+ UpdateClusterCommandInput,
86
+ UpdateClusterCommandOutput,
87
+ } from "./commands/UpdateClusterCommand";
88
+ import {
89
+ ClientInputEndpointParameters,
90
+ ClientResolvedEndpointParameters,
91
+ EndpointParameters,
92
+ } from "./endpoint/EndpointParameters";
93
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
94
+ export { __Client };
95
+ export type ServiceInputTypes =
96
+ | CreateClusterCommandInput
97
+ | CreateMultiRegionClustersCommandInput
98
+ | DeleteClusterCommandInput
99
+ | DeleteMultiRegionClustersCommandInput
100
+ | GetClusterCommandInput
101
+ | ListClustersCommandInput
102
+ | ListTagsForResourceCommandInput
103
+ | TagResourceCommandInput
104
+ | UntagResourceCommandInput
105
+ | UpdateClusterCommandInput;
106
+ export type ServiceOutputTypes =
107
+ | CreateClusterCommandOutput
108
+ | CreateMultiRegionClustersCommandOutput
109
+ | DeleteClusterCommandOutput
110
+ | DeleteMultiRegionClustersCommandOutput
111
+ | GetClusterCommandOutput
112
+ | ListClustersCommandOutput
113
+ | ListTagsForResourceCommandOutput
114
+ | TagResourceCommandOutput
115
+ | UntagResourceCommandOutput
116
+ | UpdateClusterCommandOutput;
117
+ export interface ClientDefaults
118
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
119
+ requestHandler?: __HttpHandlerUserInput;
120
+ sha256?: __ChecksumConstructor | __HashConstructor;
121
+ urlParser?: __UrlParser;
122
+ bodyLengthChecker?: __BodyLengthCalculator;
123
+ streamCollector?: __StreamCollector;
124
+ base64Decoder?: __Decoder;
125
+ base64Encoder?: __Encoder;
126
+ utf8Decoder?: __Decoder;
127
+ utf8Encoder?: __Encoder;
128
+ runtime?: string;
129
+ disableHostPrefix?: boolean;
130
+ serviceId?: string;
131
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
132
+ useFipsEndpoint?: boolean | __Provider<boolean>;
133
+ region?: string | __Provider<string>;
134
+ defaultUserAgentProvider?: Provider<__UserAgent>;
135
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
136
+ maxAttempts?: number | __Provider<number>;
137
+ retryMode?: string | __Provider<string>;
138
+ logger?: __Logger;
139
+ extensions?: RuntimeExtension[];
140
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
141
+ }
142
+ export type DSQLClientConfigType = Partial<
143
+ __SmithyConfiguration<__HttpHandlerOptions>
144
+ > &
145
+ ClientDefaults &
146
+ UserAgentInputConfig &
147
+ RetryInputConfig &
148
+ RegionInputConfig &
149
+ HostHeaderInputConfig &
150
+ EndpointInputConfig<EndpointParameters> &
151
+ HttpAuthSchemeInputConfig &
152
+ ClientInputEndpointParameters;
153
+ export interface DSQLClientConfig extends DSQLClientConfigType {}
154
+ export type DSQLClientResolvedConfigType =
155
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
156
+ Required<ClientDefaults> &
157
+ RuntimeExtensionsConfig &
158
+ UserAgentResolvedConfig &
159
+ RetryResolvedConfig &
160
+ RegionResolvedConfig &
161
+ HostHeaderResolvedConfig &
162
+ EndpointResolvedConfig<EndpointParameters> &
163
+ HttpAuthSchemeResolvedConfig &
164
+ ClientResolvedEndpointParameters;
165
+ export interface DSQLClientResolvedConfig
166
+ extends DSQLClientResolvedConfigType {}
167
+ export declare class DSQLClient extends __Client<
168
+ __HttpHandlerOptions,
169
+ ServiceInputTypes,
170
+ ServiceOutputTypes,
171
+ DSQLClientResolvedConfig
172
+ > {
173
+ readonly config: DSQLClientResolvedConfig;
174
+ constructor(
175
+ ...[configuration]: __CheckOptionalClientConfig<DSQLClientConfig>
176
+ );
177
+ destroy(): void;
178
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { DSQLHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: DSQLHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): DSQLHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: DSQLHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;