@aws-sdk/client-opensearchserverless 3.220.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.
- package/LICENSE +201 -0
- package/README.md +214 -0
- package/dist-cjs/OpenSearchServerless.js +472 -0
- package/dist-cjs/OpenSearchServerlessClient.js +40 -0
- package/dist-cjs/commands/BatchGetCollectionCommand.js +46 -0
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateCollectionCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteCollectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/GetAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListCollectionsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/UpdateCollectionCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +34 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +445 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListCollectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2572 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/OpenSearchServerless.js +468 -0
- package/dist-es/OpenSearchServerlessClient.js +36 -0
- package/dist-es/commands/BatchGetCollectionCommand.js +42 -0
- package/dist-es/commands/BatchGetVpcEndpointCommand.js +42 -0
- package/dist-es/commands/CreateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/CreateCollectionCommand.js +42 -0
- package/dist-es/commands/CreateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/CreateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteAccessPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteCollectionCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityConfigCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/GetAccessPolicyCommand.js +42 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +42 -0
- package/dist-es/commands/GetPoliciesStatsCommand.js +42 -0
- package/dist-es/commands/GetSecurityConfigCommand.js +42 -0
- package/dist-es/commands/GetSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/ListAccessPoliciesCommand.js +42 -0
- package/dist-es/commands/ListCollectionsCommand.js +42 -0
- package/dist-es/commands/ListSecurityConfigsCommand.js +42 -0
- package/dist-es/commands/ListSecurityPoliciesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +42 -0
- package/dist-es/commands/UpdateCollectionCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +31 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/OpenSearchServerlessServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +348 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListCollectionsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityConfigsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListVpcEndpointsPaginator.js +31 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +2506 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/OpenSearchServerless.d.ts +276 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +181 -0
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +39 -0
- package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +39 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +40 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +38 -0
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +42 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +38 -0
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/GetAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +37 -0
- package/dist-types/commands/GetPoliciesStatsCommand.d.ts +38 -0
- package/dist-types/commands/GetSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/GetSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +42 -0
- package/dist-types/commands/ListSecurityConfigsCommand.d.ts +39 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +39 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +38 -0
- package/dist-types/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +31 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/OpenSearchServerlessServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1802 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAccessPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCollectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityConfigsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListVpcEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +95 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +531 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +298 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/BatchGetVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAccessPolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPoliciesStatsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSecurityConfigCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSecurityPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListCollectionsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListSecurityConfigsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSecurityPoliciesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +31 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/OpenSearchServerlessServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +740 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAccessPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCollectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVpcEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +103 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { OpenSearchServerless } from "../OpenSearchServerless";
|
|
3
|
+
import { OpenSearchServerlessClient } from "../OpenSearchServerlessClient";
|
|
4
|
+
export interface OpenSearchServerlessPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: OpenSearchServerless | OpenSearchServerlessClient;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAccessPoliciesCommandInput,
|
|
4
|
+
ListAccessPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListAccessPoliciesCommand";
|
|
6
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAccessPolicies(
|
|
8
|
+
config: OpenSearchServerlessPaginationConfiguration,
|
|
9
|
+
input: ListAccessPoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAccessPoliciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCollectionsCommandInput,
|
|
4
|
+
ListCollectionsCommandOutput,
|
|
5
|
+
} from "../commands/ListCollectionsCommand";
|
|
6
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCollections(
|
|
8
|
+
config: OpenSearchServerlessPaginationConfiguration,
|
|
9
|
+
input: ListCollectionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCollectionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSecurityConfigsCommandInput,
|
|
4
|
+
ListSecurityConfigsCommandOutput,
|
|
5
|
+
} from "../commands/ListSecurityConfigsCommand";
|
|
6
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSecurityConfigs(
|
|
8
|
+
config: OpenSearchServerlessPaginationConfiguration,
|
|
9
|
+
input: ListSecurityConfigsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSecurityConfigsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSecurityPoliciesCommandInput,
|
|
4
|
+
ListSecurityPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListSecurityPoliciesCommand";
|
|
6
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSecurityPolicies(
|
|
8
|
+
config: OpenSearchServerlessPaginationConfiguration,
|
|
9
|
+
input: ListSecurityPoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSecurityPoliciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVpcEndpointsCommandInput,
|
|
4
|
+
ListVpcEndpointsCommandOutput,
|
|
5
|
+
} from "../commands/ListVpcEndpointsCommand";
|
|
6
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListVpcEndpoints(
|
|
8
|
+
config: OpenSearchServerlessPaginationConfiguration,
|
|
9
|
+
input: ListVpcEndpointsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListVpcEndpointsCommandOutput>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAccessPoliciesPaginator";
|
|
3
|
+
export * from "./ListCollectionsPaginator";
|
|
4
|
+
export * from "./ListSecurityConfigsPaginator";
|
|
5
|
+
export * from "./ListSecurityPoliciesPaginator";
|
|
6
|
+
export * from "./ListVpcEndpointsPaginator";
|
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
BatchGetCollectionCommandInput,
|
|
8
|
+
BatchGetCollectionCommandOutput,
|
|
9
|
+
} from "../commands/BatchGetCollectionCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchGetVpcEndpointCommandInput,
|
|
12
|
+
BatchGetVpcEndpointCommandOutput,
|
|
13
|
+
} from "../commands/BatchGetVpcEndpointCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAccessPolicyCommandInput,
|
|
16
|
+
CreateAccessPolicyCommandOutput,
|
|
17
|
+
} from "../commands/CreateAccessPolicyCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateCollectionCommandInput,
|
|
20
|
+
CreateCollectionCommandOutput,
|
|
21
|
+
} from "../commands/CreateCollectionCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateSecurityConfigCommandInput,
|
|
24
|
+
CreateSecurityConfigCommandOutput,
|
|
25
|
+
} from "../commands/CreateSecurityConfigCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateSecurityPolicyCommandInput,
|
|
28
|
+
CreateSecurityPolicyCommandOutput,
|
|
29
|
+
} from "../commands/CreateSecurityPolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateVpcEndpointCommandInput,
|
|
32
|
+
CreateVpcEndpointCommandOutput,
|
|
33
|
+
} from "../commands/CreateVpcEndpointCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteAccessPolicyCommandInput,
|
|
36
|
+
DeleteAccessPolicyCommandOutput,
|
|
37
|
+
} from "../commands/DeleteAccessPolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteCollectionCommandInput,
|
|
40
|
+
DeleteCollectionCommandOutput,
|
|
41
|
+
} from "../commands/DeleteCollectionCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteSecurityConfigCommandInput,
|
|
44
|
+
DeleteSecurityConfigCommandOutput,
|
|
45
|
+
} from "../commands/DeleteSecurityConfigCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteSecurityPolicyCommandInput,
|
|
48
|
+
DeleteSecurityPolicyCommandOutput,
|
|
49
|
+
} from "../commands/DeleteSecurityPolicyCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteVpcEndpointCommandInput,
|
|
52
|
+
DeleteVpcEndpointCommandOutput,
|
|
53
|
+
} from "../commands/DeleteVpcEndpointCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetAccessPolicyCommandInput,
|
|
56
|
+
GetAccessPolicyCommandOutput,
|
|
57
|
+
} from "../commands/GetAccessPolicyCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetAccountSettingsCommandInput,
|
|
60
|
+
GetAccountSettingsCommandOutput,
|
|
61
|
+
} from "../commands/GetAccountSettingsCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetPoliciesStatsCommandInput,
|
|
64
|
+
GetPoliciesStatsCommandOutput,
|
|
65
|
+
} from "../commands/GetPoliciesStatsCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetSecurityConfigCommandInput,
|
|
68
|
+
GetSecurityConfigCommandOutput,
|
|
69
|
+
} from "../commands/GetSecurityConfigCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetSecurityPolicyCommandInput,
|
|
72
|
+
GetSecurityPolicyCommandOutput,
|
|
73
|
+
} from "../commands/GetSecurityPolicyCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListAccessPoliciesCommandInput,
|
|
76
|
+
ListAccessPoliciesCommandOutput,
|
|
77
|
+
} from "../commands/ListAccessPoliciesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListCollectionsCommandInput,
|
|
80
|
+
ListCollectionsCommandOutput,
|
|
81
|
+
} from "../commands/ListCollectionsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListSecurityConfigsCommandInput,
|
|
84
|
+
ListSecurityConfigsCommandOutput,
|
|
85
|
+
} from "../commands/ListSecurityConfigsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListSecurityPoliciesCommandInput,
|
|
88
|
+
ListSecurityPoliciesCommandOutput,
|
|
89
|
+
} from "../commands/ListSecurityPoliciesCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListTagsForResourceCommandInput,
|
|
92
|
+
ListTagsForResourceCommandOutput,
|
|
93
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListVpcEndpointsCommandInput,
|
|
96
|
+
ListVpcEndpointsCommandOutput,
|
|
97
|
+
} from "../commands/ListVpcEndpointsCommand";
|
|
98
|
+
import {
|
|
99
|
+
TagResourceCommandInput,
|
|
100
|
+
TagResourceCommandOutput,
|
|
101
|
+
} from "../commands/TagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UntagResourceCommandInput,
|
|
104
|
+
UntagResourceCommandOutput,
|
|
105
|
+
} from "../commands/UntagResourceCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateAccessPolicyCommandInput,
|
|
108
|
+
UpdateAccessPolicyCommandOutput,
|
|
109
|
+
} from "../commands/UpdateAccessPolicyCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateAccountSettingsCommandInput,
|
|
112
|
+
UpdateAccountSettingsCommandOutput,
|
|
113
|
+
} from "../commands/UpdateAccountSettingsCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateCollectionCommandInput,
|
|
116
|
+
UpdateCollectionCommandOutput,
|
|
117
|
+
} from "../commands/UpdateCollectionCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateSecurityConfigCommandInput,
|
|
120
|
+
UpdateSecurityConfigCommandOutput,
|
|
121
|
+
} from "../commands/UpdateSecurityConfigCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateSecurityPolicyCommandInput,
|
|
124
|
+
UpdateSecurityPolicyCommandOutput,
|
|
125
|
+
} from "../commands/UpdateSecurityPolicyCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateVpcEndpointCommandInput,
|
|
128
|
+
UpdateVpcEndpointCommandOutput,
|
|
129
|
+
} from "../commands/UpdateVpcEndpointCommand";
|
|
130
|
+
export declare const serializeAws_json1_0BatchGetCollectionCommand: (
|
|
131
|
+
input: BatchGetCollectionCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_0BatchGetVpcEndpointCommand: (
|
|
135
|
+
input: BatchGetVpcEndpointCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_0CreateAccessPolicyCommand: (
|
|
139
|
+
input: CreateAccessPolicyCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0CreateCollectionCommand: (
|
|
143
|
+
input: CreateCollectionCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_0CreateSecurityConfigCommand: (
|
|
147
|
+
input: CreateSecurityConfigCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_0CreateSecurityPolicyCommand: (
|
|
151
|
+
input: CreateSecurityPolicyCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_0CreateVpcEndpointCommand: (
|
|
155
|
+
input: CreateVpcEndpointCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_0DeleteAccessPolicyCommand: (
|
|
159
|
+
input: DeleteAccessPolicyCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_0DeleteCollectionCommand: (
|
|
163
|
+
input: DeleteCollectionCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_0DeleteSecurityConfigCommand: (
|
|
167
|
+
input: DeleteSecurityConfigCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_0DeleteSecurityPolicyCommand: (
|
|
171
|
+
input: DeleteSecurityPolicyCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_0DeleteVpcEndpointCommand: (
|
|
175
|
+
input: DeleteVpcEndpointCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_0GetAccessPolicyCommand: (
|
|
179
|
+
input: GetAccessPolicyCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_0GetAccountSettingsCommand: (
|
|
183
|
+
input: GetAccountSettingsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_0GetPoliciesStatsCommand: (
|
|
187
|
+
input: GetPoliciesStatsCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_0GetSecurityConfigCommand: (
|
|
191
|
+
input: GetSecurityConfigCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_0GetSecurityPolicyCommand: (
|
|
195
|
+
input: GetSecurityPolicyCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_0ListAccessPoliciesCommand: (
|
|
199
|
+
input: ListAccessPoliciesCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_0ListCollectionsCommand: (
|
|
203
|
+
input: ListCollectionsCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_json1_0ListSecurityConfigsCommand: (
|
|
207
|
+
input: ListSecurityConfigsCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_json1_0ListSecurityPoliciesCommand: (
|
|
211
|
+
input: ListSecurityPoliciesCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_json1_0ListTagsForResourceCommand: (
|
|
215
|
+
input: ListTagsForResourceCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_0ListVpcEndpointsCommand: (
|
|
219
|
+
input: ListVpcEndpointsCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_json1_0TagResourceCommand: (
|
|
223
|
+
input: TagResourceCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_json1_0UntagResourceCommand: (
|
|
227
|
+
input: UntagResourceCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_json1_0UpdateAccessPolicyCommand: (
|
|
231
|
+
input: UpdateAccessPolicyCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_json1_0UpdateAccountSettingsCommand: (
|
|
235
|
+
input: UpdateAccountSettingsCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_json1_0UpdateCollectionCommand: (
|
|
239
|
+
input: UpdateCollectionCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const serializeAws_json1_0UpdateSecurityConfigCommand: (
|
|
243
|
+
input: UpdateSecurityConfigCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const serializeAws_json1_0UpdateSecurityPolicyCommand: (
|
|
247
|
+
input: UpdateSecurityPolicyCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const serializeAws_json1_0UpdateVpcEndpointCommand: (
|
|
251
|
+
input: UpdateVpcEndpointCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const deserializeAws_json1_0BatchGetCollectionCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<BatchGetCollectionCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_0BatchGetVpcEndpointCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<BatchGetVpcEndpointCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_0CreateAccessPolicyCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateAccessPolicyCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_0CreateCollectionCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<CreateCollectionCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_0CreateSecurityConfigCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<CreateSecurityConfigCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_0CreateSecurityPolicyCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<CreateSecurityPolicyCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_0CreateVpcEndpointCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<CreateVpcEndpointCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_0DeleteAccessPolicyCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeleteAccessPolicyCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_0DeleteCollectionCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DeleteCollectionCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_0DeleteSecurityConfigCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DeleteSecurityConfigCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_0DeleteSecurityPolicyCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DeleteSecurityPolicyCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_0DeleteVpcEndpointCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DeleteVpcEndpointCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_0GetAccessPolicyCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<GetAccessPolicyCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_json1_0GetAccountSettingsCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<GetAccountSettingsCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_0GetPoliciesStatsCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<GetPoliciesStatsCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_json1_0GetSecurityConfigCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<GetSecurityConfigCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_0GetSecurityPolicyCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<GetSecurityPolicyCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_0ListAccessPoliciesCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<ListAccessPoliciesCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_json1_0ListCollectionsCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<ListCollectionsCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_json1_0ListSecurityConfigsCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ListSecurityConfigsCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_json1_0ListSecurityPoliciesCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<ListSecurityPoliciesCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_json1_0ListVpcEndpointsCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<ListVpcEndpointsCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_json1_0TagResourceCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<TagResourceCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_json1_0UntagResourceCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
354
|
+
export declare const deserializeAws_json1_0UpdateAccessPolicyCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<UpdateAccessPolicyCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_json1_0UpdateAccountSettingsCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<UpdateAccountSettingsCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_json1_0UpdateCollectionCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<UpdateCollectionCommandOutput>;
|
|
366
|
+
export declare const deserializeAws_json1_0UpdateSecurityConfigCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<UpdateSecurityConfigCommandOutput>;
|
|
370
|
+
export declare const deserializeAws_json1_0UpdateSecurityPolicyCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<UpdateSecurityPolicyCommandOutput>;
|
|
374
|
+
export declare const deserializeAws_json1_0UpdateVpcEndpointCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<UpdateVpcEndpointCommandOutput>;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: OpenSearchServerlessClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
37
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@aws-sdk/types").Provider<string>
|
|
52
|
+
| import("@aws-sdk/types").Endpoint
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
54
|
+
| import("@aws-sdk/types").EndpointV2
|
|
55
|
+
| import("@aws-sdk/types").Provider<
|
|
56
|
+
import("@aws-sdk/types").EndpointV2
|
|
57
|
+
>
|
|
58
|
+
))
|
|
59
|
+
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
66
|
+
tls?: boolean | undefined;
|
|
67
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
| import("@aws-sdk/types").Provider<
|
|
71
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
72
|
+
>
|
|
73
|
+
| undefined;
|
|
74
|
+
signer?:
|
|
75
|
+
| import("@aws-sdk/types").RequestSigner
|
|
76
|
+
| ((
|
|
77
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
78
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
79
|
+
| undefined;
|
|
80
|
+
signingEscapePath?: boolean | undefined;
|
|
81
|
+
systemClockOffset?: number | undefined;
|
|
82
|
+
signingRegion?: string | undefined;
|
|
83
|
+
signerConstructor?:
|
|
84
|
+
| (new (
|
|
85
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
86
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
87
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
88
|
+
| undefined;
|
|
89
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
90
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: OpenSearchServerlessClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
37
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@aws-sdk/types").Provider<string>
|
|
52
|
+
| import("@aws-sdk/types").Endpoint
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
54
|
+
| import("@aws-sdk/types").EndpointV2
|
|
55
|
+
| import("@aws-sdk/types").Provider<
|
|
56
|
+
import("@aws-sdk/types").EndpointV2
|
|
57
|
+
>
|
|
58
|
+
))
|
|
59
|
+
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
66
|
+
tls?: boolean | undefined;
|
|
67
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
| import("@aws-sdk/types").Provider<
|
|
71
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
72
|
+
>
|
|
73
|
+
| undefined;
|
|
74
|
+
signer?:
|
|
75
|
+
| import("@aws-sdk/types").RequestSigner
|
|
76
|
+
| ((
|
|
77
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
78
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
79
|
+
| undefined;
|
|
80
|
+
signingEscapePath?: boolean | undefined;
|
|
81
|
+
systemClockOffset?: number | undefined;
|
|
82
|
+
signingRegion?: string | undefined;
|
|
83
|
+
signerConstructor?:
|
|
84
|
+
| (new (
|
|
85
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
86
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
87
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
88
|
+
| undefined;
|
|
89
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
90
|
+
};
|