@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.
Files changed (57) hide show
  1. package/dist-cjs/OpenSearchServerless.js +1 -85
  2. package/dist-cjs/OpenSearchServerlessClient.js +1 -43
  3. package/dist-cjs/commands/BatchGetCollectionCommand.js +1 -28
  4. package/dist-cjs/commands/BatchGetEffectiveLifecyclePolicyCommand.js +1 -28
  5. package/dist-cjs/commands/BatchGetLifecyclePolicyCommand.js +1 -28
  6. package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +1 -28
  7. package/dist-cjs/commands/CreateAccessPolicyCommand.js +1 -28
  8. package/dist-cjs/commands/CreateCollectionCommand.js +1 -28
  9. package/dist-cjs/commands/CreateLifecyclePolicyCommand.js +1 -28
  10. package/dist-cjs/commands/CreateSecurityConfigCommand.js +1 -28
  11. package/dist-cjs/commands/CreateSecurityPolicyCommand.js +1 -28
  12. package/dist-cjs/commands/CreateVpcEndpointCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteAccessPolicyCommand.js +1 -28
  14. package/dist-cjs/commands/DeleteCollectionCommand.js +1 -28
  15. package/dist-cjs/commands/DeleteLifecyclePolicyCommand.js +1 -28
  16. package/dist-cjs/commands/DeleteSecurityConfigCommand.js +1 -28
  17. package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +1 -28
  18. package/dist-cjs/commands/DeleteVpcEndpointCommand.js +1 -28
  19. package/dist-cjs/commands/GetAccessPolicyCommand.js +1 -28
  20. package/dist-cjs/commands/GetAccountSettingsCommand.js +1 -28
  21. package/dist-cjs/commands/GetPoliciesStatsCommand.js +1 -28
  22. package/dist-cjs/commands/GetSecurityConfigCommand.js +1 -28
  23. package/dist-cjs/commands/GetSecurityPolicyCommand.js +1 -28
  24. package/dist-cjs/commands/ListAccessPoliciesCommand.js +1 -28
  25. package/dist-cjs/commands/ListCollectionsCommand.js +1 -28
  26. package/dist-cjs/commands/ListLifecyclePoliciesCommand.js +1 -28
  27. package/dist-cjs/commands/ListSecurityConfigsCommand.js +1 -28
  28. package/dist-cjs/commands/ListSecurityPoliciesCommand.js +1 -28
  29. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  30. package/dist-cjs/commands/ListVpcEndpointsCommand.js +1 -28
  31. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  32. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  33. package/dist-cjs/commands/UpdateAccessPolicyCommand.js +1 -28
  34. package/dist-cjs/commands/UpdateAccountSettingsCommand.js +1 -28
  35. package/dist-cjs/commands/UpdateCollectionCommand.js +1 -28
  36. package/dist-cjs/commands/UpdateLifecyclePolicyCommand.js +1 -28
  37. package/dist-cjs/commands/UpdateSecurityConfigCommand.js +1 -28
  38. package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +1 -28
  39. package/dist-cjs/commands/UpdateVpcEndpointCommand.js +1 -28
  40. package/dist-cjs/commands/index.js +1 -40
  41. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  42. package/dist-cjs/extensionConfiguration.js +1 -2
  43. package/dist-cjs/index.js +3183 -11
  44. package/dist-cjs/models/OpenSearchServerlessServiceException.js +1 -12
  45. package/dist-cjs/models/index.js +1 -4
  46. package/dist-cjs/models/models_0.js +1 -123
  47. package/dist-cjs/pagination/Interfaces.js +1 -2
  48. package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListCollectionsPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListLifecyclePoliciesPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +1 -7
  52. package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +1 -7
  53. package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +1 -7
  54. package/dist-cjs/pagination/index.js +1 -10
  55. package/dist-cjs/protocols/Aws_json1_0.js +1 -2101
  56. package/dist-cjs/runtimeExtensions.js +1 -22
  57. package/package.json +40 -40
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetAccessPolicyCommand = 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 GetAccessPolicyCommand 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", "GetAccessPolicy", {})
22
- .n("OpenSearchServerlessClient", "GetAccessPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_GetAccessPolicyCommand)
25
- .de(Aws_json1_0_1.de_GetAccessPolicyCommand)
26
- .build() {
27
- }
28
- exports.GetAccessPolicyCommand = GetAccessPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetAccountSettingsCommand = 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 GetAccountSettingsCommand 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", "GetAccountSettings", {})
22
- .n("OpenSearchServerlessClient", "GetAccountSettingsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_GetAccountSettingsCommand)
25
- .de(Aws_json1_0_1.de_GetAccountSettingsCommand)
26
- .build() {
27
- }
28
- exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetPoliciesStatsCommand = 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 GetPoliciesStatsCommand 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", "GetPoliciesStats", {})
22
- .n("OpenSearchServerlessClient", "GetPoliciesStatsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_GetPoliciesStatsCommand)
25
- .de(Aws_json1_0_1.de_GetPoliciesStatsCommand)
26
- .build() {
27
- }
28
- exports.GetPoliciesStatsCommand = GetPoliciesStatsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSecurityConfigCommand = 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 GetSecurityConfigCommand 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", "GetSecurityConfig", {})
22
- .n("OpenSearchServerlessClient", "GetSecurityConfigCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_GetSecurityConfigCommand)
25
- .de(Aws_json1_0_1.de_GetSecurityConfigCommand)
26
- .build() {
27
- }
28
- exports.GetSecurityConfigCommand = GetSecurityConfigCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSecurityPolicyCommand = 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 GetSecurityPolicyCommand 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", "GetSecurityPolicy", {})
22
- .n("OpenSearchServerlessClient", "GetSecurityPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_GetSecurityPolicyCommand)
25
- .de(Aws_json1_0_1.de_GetSecurityPolicyCommand)
26
- .build() {
27
- }
28
- exports.GetSecurityPolicyCommand = GetSecurityPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListAccessPoliciesCommand = 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 ListAccessPoliciesCommand 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", "ListAccessPolicies", {})
22
- .n("OpenSearchServerlessClient", "ListAccessPoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListAccessPoliciesCommand)
25
- .de(Aws_json1_0_1.de_ListAccessPoliciesCommand)
26
- .build() {
27
- }
28
- exports.ListAccessPoliciesCommand = ListAccessPoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListCollectionsCommand = 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 ListCollectionsCommand 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", "ListCollections", {})
22
- .n("OpenSearchServerlessClient", "ListCollectionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListCollectionsCommand)
25
- .de(Aws_json1_0_1.de_ListCollectionsCommand)
26
- .build() {
27
- }
28
- exports.ListCollectionsCommand = ListCollectionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListLifecyclePoliciesCommand = 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 ListLifecyclePoliciesCommand 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", "ListLifecyclePolicies", {})
22
- .n("OpenSearchServerlessClient", "ListLifecyclePoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListLifecyclePoliciesCommand)
25
- .de(Aws_json1_0_1.de_ListLifecyclePoliciesCommand)
26
- .build() {
27
- }
28
- exports.ListLifecyclePoliciesCommand = ListLifecyclePoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSecurityConfigsCommand = 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 ListSecurityConfigsCommand 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", "ListSecurityConfigs", {})
22
- .n("OpenSearchServerlessClient", "ListSecurityConfigsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListSecurityConfigsCommand)
25
- .de(Aws_json1_0_1.de_ListSecurityConfigsCommand)
26
- .build() {
27
- }
28
- exports.ListSecurityConfigsCommand = ListSecurityConfigsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSecurityPoliciesCommand = 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 ListSecurityPoliciesCommand 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", "ListSecurityPolicies", {})
22
- .n("OpenSearchServerlessClient", "ListSecurityPoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListSecurityPoliciesCommand)
25
- .de(Aws_json1_0_1.de_ListSecurityPoliciesCommand)
26
- .build() {
27
- }
28
- exports.ListSecurityPoliciesCommand = ListSecurityPoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = 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 ListTagsForResourceCommand 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", "ListTagsForResource", {})
22
- .n("OpenSearchServerlessClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListTagsForResourceCommand)
25
- .de(Aws_json1_0_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListVpcEndpointsCommand = 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 ListVpcEndpointsCommand 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", "ListVpcEndpoints", {})
22
- .n("OpenSearchServerlessClient", "ListVpcEndpointsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListVpcEndpointsCommand)
25
- .de(Aws_json1_0_1.de_ListVpcEndpointsCommand)
26
- .build() {
27
- }
28
- exports.ListVpcEndpointsCommand = ListVpcEndpointsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = 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 TagResourceCommand 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", "TagResource", {})
22
- .n("OpenSearchServerlessClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_TagResourceCommand)
25
- .de(Aws_json1_0_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = 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 UntagResourceCommand 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", "UntagResource", {})
22
- .n("OpenSearchServerlessClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UntagResourceCommand)
25
- .de(Aws_json1_0_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAccessPolicyCommand = 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 UpdateAccessPolicyCommand 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", "UpdateAccessPolicy", {})
22
- .n("OpenSearchServerlessClient", "UpdateAccessPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateAccessPolicyCommand)
25
- .de(Aws_json1_0_1.de_UpdateAccessPolicyCommand)
26
- .build() {
27
- }
28
- exports.UpdateAccessPolicyCommand = UpdateAccessPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAccountSettingsCommand = 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 UpdateAccountSettingsCommand 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", "UpdateAccountSettings", {})
22
- .n("OpenSearchServerlessClient", "UpdateAccountSettingsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateAccountSettingsCommand)
25
- .de(Aws_json1_0_1.de_UpdateAccountSettingsCommand)
26
- .build() {
27
- }
28
- exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateCollectionCommand = 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 UpdateCollectionCommand 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", "UpdateCollection", {})
22
- .n("OpenSearchServerlessClient", "UpdateCollectionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateCollectionCommand)
25
- .de(Aws_json1_0_1.de_UpdateCollectionCommand)
26
- .build() {
27
- }
28
- exports.UpdateCollectionCommand = UpdateCollectionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateLifecyclePolicyCommand = 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 UpdateLifecyclePolicyCommand 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", "UpdateLifecyclePolicy", {})
22
- .n("OpenSearchServerlessClient", "UpdateLifecyclePolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateLifecyclePolicyCommand)
25
- .de(Aws_json1_0_1.de_UpdateLifecyclePolicyCommand)
26
- .build() {
27
- }
28
- exports.UpdateLifecyclePolicyCommand = UpdateLifecyclePolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSecurityConfigCommand = 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 UpdateSecurityConfigCommand 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", "UpdateSecurityConfig", {})
22
- .n("OpenSearchServerlessClient", "UpdateSecurityConfigCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateSecurityConfigCommand)
25
- .de(Aws_json1_0_1.de_UpdateSecurityConfigCommand)
26
- .build() {
27
- }
28
- exports.UpdateSecurityConfigCommand = UpdateSecurityConfigCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSecurityPolicyCommand = 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 UpdateSecurityPolicyCommand 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", "UpdateSecurityPolicy", {})
22
- .n("OpenSearchServerlessClient", "UpdateSecurityPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateSecurityPolicyCommand)
25
- .de(Aws_json1_0_1.de_UpdateSecurityPolicyCommand)
26
- .build() {
27
- }
28
- exports.UpdateSecurityPolicyCommand = UpdateSecurityPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateVpcEndpointCommand = 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 UpdateVpcEndpointCommand 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", "UpdateVpcEndpoint", {})
22
- .n("OpenSearchServerlessClient", "UpdateVpcEndpointCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateVpcEndpointCommand)
25
- .de(Aws_json1_0_1.de_UpdateVpcEndpointCommand)
26
- .build() {
27
- }
28
- exports.UpdateVpcEndpointCommand = UpdateVpcEndpointCommand;
1
+ module.exports = require("../index.js");