@aws-sdk/client-opensearchserverless 3.489.0 → 3.495.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/dist-cjs/OpenSearchServerless.js +1 -85
- package/dist-cjs/OpenSearchServerlessClient.js +1 -43
- package/dist-cjs/commands/BatchGetCollectionCommand.js +1 -28
- package/dist-cjs/commands/BatchGetEffectiveLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/BatchGetLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +1 -28
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +1 -28
- package/dist-cjs/commands/CreateCollectionCommand.js +1 -28
- package/dist-cjs/commands/CreateLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +1 -28
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +1 -28
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +1 -28
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteCollectionCommand.js +1 -28
- package/dist-cjs/commands/DeleteLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +1 -28
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +1 -28
- package/dist-cjs/commands/GetAccessPolicyCommand.js +1 -28
- package/dist-cjs/commands/GetAccountSettingsCommand.js +1 -28
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +1 -28
- package/dist-cjs/commands/GetSecurityConfigCommand.js +1 -28
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +1 -28
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +1 -28
- package/dist-cjs/commands/ListCollectionsCommand.js +1 -28
- package/dist-cjs/commands/ListLifecyclePoliciesCommand.js +1 -28
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +1 -28
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +1 -28
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +1 -28
- package/dist-cjs/commands/UpdateCollectionCommand.js +1 -28
- package/dist-cjs/commands/UpdateLifecyclePolicyCommand.js +1 -28
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +1 -28
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +1 -28
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -40
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3183 -11
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -123
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +1 -7
- package/dist-cjs/pagination/ListCollectionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListLifecyclePoliciesPaginator.js +1 -7
- package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +1 -7
- package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +1 -7
- package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -10
- package/dist-cjs/protocols/Aws_json1_0.js +1 -2101
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,85 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OpenSearchServerless = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const BatchGetCollectionCommand_1 = require("./commands/BatchGetCollectionCommand");
|
|
6
|
-
const BatchGetEffectiveLifecyclePolicyCommand_1 = require("./commands/BatchGetEffectiveLifecyclePolicyCommand");
|
|
7
|
-
const BatchGetLifecyclePolicyCommand_1 = require("./commands/BatchGetLifecyclePolicyCommand");
|
|
8
|
-
const BatchGetVpcEndpointCommand_1 = require("./commands/BatchGetVpcEndpointCommand");
|
|
9
|
-
const CreateAccessPolicyCommand_1 = require("./commands/CreateAccessPolicyCommand");
|
|
10
|
-
const CreateCollectionCommand_1 = require("./commands/CreateCollectionCommand");
|
|
11
|
-
const CreateLifecyclePolicyCommand_1 = require("./commands/CreateLifecyclePolicyCommand");
|
|
12
|
-
const CreateSecurityConfigCommand_1 = require("./commands/CreateSecurityConfigCommand");
|
|
13
|
-
const CreateSecurityPolicyCommand_1 = require("./commands/CreateSecurityPolicyCommand");
|
|
14
|
-
const CreateVpcEndpointCommand_1 = require("./commands/CreateVpcEndpointCommand");
|
|
15
|
-
const DeleteAccessPolicyCommand_1 = require("./commands/DeleteAccessPolicyCommand");
|
|
16
|
-
const DeleteCollectionCommand_1 = require("./commands/DeleteCollectionCommand");
|
|
17
|
-
const DeleteLifecyclePolicyCommand_1 = require("./commands/DeleteLifecyclePolicyCommand");
|
|
18
|
-
const DeleteSecurityConfigCommand_1 = require("./commands/DeleteSecurityConfigCommand");
|
|
19
|
-
const DeleteSecurityPolicyCommand_1 = require("./commands/DeleteSecurityPolicyCommand");
|
|
20
|
-
const DeleteVpcEndpointCommand_1 = require("./commands/DeleteVpcEndpointCommand");
|
|
21
|
-
const GetAccessPolicyCommand_1 = require("./commands/GetAccessPolicyCommand");
|
|
22
|
-
const GetAccountSettingsCommand_1 = require("./commands/GetAccountSettingsCommand");
|
|
23
|
-
const GetPoliciesStatsCommand_1 = require("./commands/GetPoliciesStatsCommand");
|
|
24
|
-
const GetSecurityConfigCommand_1 = require("./commands/GetSecurityConfigCommand");
|
|
25
|
-
const GetSecurityPolicyCommand_1 = require("./commands/GetSecurityPolicyCommand");
|
|
26
|
-
const ListAccessPoliciesCommand_1 = require("./commands/ListAccessPoliciesCommand");
|
|
27
|
-
const ListCollectionsCommand_1 = require("./commands/ListCollectionsCommand");
|
|
28
|
-
const ListLifecyclePoliciesCommand_1 = require("./commands/ListLifecyclePoliciesCommand");
|
|
29
|
-
const ListSecurityConfigsCommand_1 = require("./commands/ListSecurityConfigsCommand");
|
|
30
|
-
const ListSecurityPoliciesCommand_1 = require("./commands/ListSecurityPoliciesCommand");
|
|
31
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
32
|
-
const ListVpcEndpointsCommand_1 = require("./commands/ListVpcEndpointsCommand");
|
|
33
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
34
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
35
|
-
const UpdateAccessPolicyCommand_1 = require("./commands/UpdateAccessPolicyCommand");
|
|
36
|
-
const UpdateAccountSettingsCommand_1 = require("./commands/UpdateAccountSettingsCommand");
|
|
37
|
-
const UpdateCollectionCommand_1 = require("./commands/UpdateCollectionCommand");
|
|
38
|
-
const UpdateLifecyclePolicyCommand_1 = require("./commands/UpdateLifecyclePolicyCommand");
|
|
39
|
-
const UpdateSecurityConfigCommand_1 = require("./commands/UpdateSecurityConfigCommand");
|
|
40
|
-
const UpdateSecurityPolicyCommand_1 = require("./commands/UpdateSecurityPolicyCommand");
|
|
41
|
-
const UpdateVpcEndpointCommand_1 = require("./commands/UpdateVpcEndpointCommand");
|
|
42
|
-
const OpenSearchServerlessClient_1 = require("./OpenSearchServerlessClient");
|
|
43
|
-
const commands = {
|
|
44
|
-
BatchGetCollectionCommand: BatchGetCollectionCommand_1.BatchGetCollectionCommand,
|
|
45
|
-
BatchGetEffectiveLifecyclePolicyCommand: BatchGetEffectiveLifecyclePolicyCommand_1.BatchGetEffectiveLifecyclePolicyCommand,
|
|
46
|
-
BatchGetLifecyclePolicyCommand: BatchGetLifecyclePolicyCommand_1.BatchGetLifecyclePolicyCommand,
|
|
47
|
-
BatchGetVpcEndpointCommand: BatchGetVpcEndpointCommand_1.BatchGetVpcEndpointCommand,
|
|
48
|
-
CreateAccessPolicyCommand: CreateAccessPolicyCommand_1.CreateAccessPolicyCommand,
|
|
49
|
-
CreateCollectionCommand: CreateCollectionCommand_1.CreateCollectionCommand,
|
|
50
|
-
CreateLifecyclePolicyCommand: CreateLifecyclePolicyCommand_1.CreateLifecyclePolicyCommand,
|
|
51
|
-
CreateSecurityConfigCommand: CreateSecurityConfigCommand_1.CreateSecurityConfigCommand,
|
|
52
|
-
CreateSecurityPolicyCommand: CreateSecurityPolicyCommand_1.CreateSecurityPolicyCommand,
|
|
53
|
-
CreateVpcEndpointCommand: CreateVpcEndpointCommand_1.CreateVpcEndpointCommand,
|
|
54
|
-
DeleteAccessPolicyCommand: DeleteAccessPolicyCommand_1.DeleteAccessPolicyCommand,
|
|
55
|
-
DeleteCollectionCommand: DeleteCollectionCommand_1.DeleteCollectionCommand,
|
|
56
|
-
DeleteLifecyclePolicyCommand: DeleteLifecyclePolicyCommand_1.DeleteLifecyclePolicyCommand,
|
|
57
|
-
DeleteSecurityConfigCommand: DeleteSecurityConfigCommand_1.DeleteSecurityConfigCommand,
|
|
58
|
-
DeleteSecurityPolicyCommand: DeleteSecurityPolicyCommand_1.DeleteSecurityPolicyCommand,
|
|
59
|
-
DeleteVpcEndpointCommand: DeleteVpcEndpointCommand_1.DeleteVpcEndpointCommand,
|
|
60
|
-
GetAccessPolicyCommand: GetAccessPolicyCommand_1.GetAccessPolicyCommand,
|
|
61
|
-
GetAccountSettingsCommand: GetAccountSettingsCommand_1.GetAccountSettingsCommand,
|
|
62
|
-
GetPoliciesStatsCommand: GetPoliciesStatsCommand_1.GetPoliciesStatsCommand,
|
|
63
|
-
GetSecurityConfigCommand: GetSecurityConfigCommand_1.GetSecurityConfigCommand,
|
|
64
|
-
GetSecurityPolicyCommand: GetSecurityPolicyCommand_1.GetSecurityPolicyCommand,
|
|
65
|
-
ListAccessPoliciesCommand: ListAccessPoliciesCommand_1.ListAccessPoliciesCommand,
|
|
66
|
-
ListCollectionsCommand: ListCollectionsCommand_1.ListCollectionsCommand,
|
|
67
|
-
ListLifecyclePoliciesCommand: ListLifecyclePoliciesCommand_1.ListLifecyclePoliciesCommand,
|
|
68
|
-
ListSecurityConfigsCommand: ListSecurityConfigsCommand_1.ListSecurityConfigsCommand,
|
|
69
|
-
ListSecurityPoliciesCommand: ListSecurityPoliciesCommand_1.ListSecurityPoliciesCommand,
|
|
70
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
71
|
-
ListVpcEndpointsCommand: ListVpcEndpointsCommand_1.ListVpcEndpointsCommand,
|
|
72
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
73
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
74
|
-
UpdateAccessPolicyCommand: UpdateAccessPolicyCommand_1.UpdateAccessPolicyCommand,
|
|
75
|
-
UpdateAccountSettingsCommand: UpdateAccountSettingsCommand_1.UpdateAccountSettingsCommand,
|
|
76
|
-
UpdateCollectionCommand: UpdateCollectionCommand_1.UpdateCollectionCommand,
|
|
77
|
-
UpdateLifecyclePolicyCommand: UpdateLifecyclePolicyCommand_1.UpdateLifecyclePolicyCommand,
|
|
78
|
-
UpdateSecurityConfigCommand: UpdateSecurityConfigCommand_1.UpdateSecurityConfigCommand,
|
|
79
|
-
UpdateSecurityPolicyCommand: UpdateSecurityPolicyCommand_1.UpdateSecurityPolicyCommand,
|
|
80
|
-
UpdateVpcEndpointCommand: UpdateVpcEndpointCommand_1.UpdateVpcEndpointCommand,
|
|
81
|
-
};
|
|
82
|
-
class OpenSearchServerless extends OpenSearchServerlessClient_1.OpenSearchServerlessClient {
|
|
83
|
-
}
|
|
84
|
-
exports.OpenSearchServerless = OpenSearchServerless;
|
|
85
|
-
(0, smithy_client_1.createAggregatedClient)(commands, OpenSearchServerless);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OpenSearchServerlessClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class OpenSearchServerlessClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.OpenSearchServerlessClient = OpenSearchServerlessClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchGetCollectionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class BatchGetCollectionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "BatchGetCollection", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "BatchGetCollectionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_BatchGetCollectionCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_BatchGetCollectionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchGetCollectionCommand = BatchGetCollectionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchGetEffectiveLifecyclePolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class BatchGetEffectiveLifecyclePolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "BatchGetEffectiveLifecyclePolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "BatchGetEffectiveLifecyclePolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_BatchGetEffectiveLifecyclePolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_BatchGetEffectiveLifecyclePolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchGetEffectiveLifecyclePolicyCommand = BatchGetEffectiveLifecyclePolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchGetLifecyclePolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class BatchGetLifecyclePolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "BatchGetLifecyclePolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "BatchGetLifecyclePolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_BatchGetLifecyclePolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_BatchGetLifecyclePolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchGetLifecyclePolicyCommand = BatchGetLifecyclePolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchGetVpcEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class BatchGetVpcEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "BatchGetVpcEndpoint", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "BatchGetVpcEndpointCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_BatchGetVpcEndpointCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_BatchGetVpcEndpointCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchGetVpcEndpointCommand = BatchGetVpcEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateAccessPolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateAccessPolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateAccessPolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateAccessPolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateAccessPolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateAccessPolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateAccessPolicyCommand = CreateAccessPolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCollectionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateCollectionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateCollection", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateCollectionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateCollectionCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateCollectionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateCollectionCommand = CreateCollectionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLifecyclePolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateLifecyclePolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateLifecyclePolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateLifecyclePolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateLifecyclePolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateLifecyclePolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLifecyclePolicyCommand = CreateLifecyclePolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateSecurityConfigCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateSecurityConfigCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateSecurityConfig", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateSecurityConfigCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateSecurityConfigCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateSecurityConfigCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateSecurityConfigCommand = CreateSecurityConfigCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateSecurityPolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateSecurityPolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateSecurityPolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateSecurityPolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateSecurityPolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateSecurityPolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateSecurityPolicyCommand = CreateSecurityPolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateVpcEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class CreateVpcEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "CreateVpcEndpoint", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "CreateVpcEndpointCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_CreateVpcEndpointCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_CreateVpcEndpointCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateVpcEndpointCommand = CreateVpcEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteAccessPolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteAccessPolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteAccessPolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteAccessPolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteAccessPolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteAccessPolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteAccessPolicyCommand = DeleteAccessPolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCollectionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteCollectionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteCollection", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteCollectionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteCollectionCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteCollectionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCollectionCommand = DeleteCollectionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteLifecyclePolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteLifecyclePolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteLifecyclePolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteLifecyclePolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteLifecyclePolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteLifecyclePolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteLifecyclePolicyCommand = DeleteLifecyclePolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteSecurityConfigCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteSecurityConfigCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteSecurityConfig", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteSecurityConfigCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteSecurityConfigCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteSecurityConfigCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteSecurityConfigCommand = DeleteSecurityConfigCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteSecurityPolicyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteSecurityPolicyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteSecurityPolicy", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteSecurityPolicyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteSecurityPolicyCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteSecurityPolicyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteSecurityPolicyCommand = DeleteSecurityPolicyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteVpcEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
-
class DeleteVpcEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("OpenSearchServerless", "DeleteVpcEndpoint", {})
|
|
22
|
-
.n("OpenSearchServerlessClient", "DeleteVpcEndpointCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_0_1.se_DeleteVpcEndpointCommand)
|
|
25
|
-
.de(Aws_json1_0_1.de_DeleteVpcEndpointCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteVpcEndpointCommand = DeleteVpcEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|