@aws-sdk/client-opensearchserverless 3.952.0 → 3.953.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 (61) hide show
  1. package/dist-cjs/index.js +573 -363
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/BatchGetCollectionCommand.js +2 -2
  4. package/dist-es/commands/BatchGetEffectiveLifecyclePolicyCommand.js +2 -2
  5. package/dist-es/commands/BatchGetLifecyclePolicyCommand.js +2 -2
  6. package/dist-es/commands/BatchGetVpcEndpointCommand.js +2 -2
  7. package/dist-es/commands/CreateAccessPolicyCommand.js +2 -2
  8. package/dist-es/commands/CreateCollectionCommand.js +2 -2
  9. package/dist-es/commands/CreateIndexCommand.js +2 -2
  10. package/dist-es/commands/CreateLifecyclePolicyCommand.js +2 -2
  11. package/dist-es/commands/CreateSecurityConfigCommand.js +2 -2
  12. package/dist-es/commands/CreateSecurityPolicyCommand.js +2 -2
  13. package/dist-es/commands/CreateVpcEndpointCommand.js +2 -2
  14. package/dist-es/commands/DeleteAccessPolicyCommand.js +2 -2
  15. package/dist-es/commands/DeleteCollectionCommand.js +2 -2
  16. package/dist-es/commands/DeleteIndexCommand.js +2 -2
  17. package/dist-es/commands/DeleteLifecyclePolicyCommand.js +2 -2
  18. package/dist-es/commands/DeleteSecurityConfigCommand.js +2 -2
  19. package/dist-es/commands/DeleteSecurityPolicyCommand.js +2 -2
  20. package/dist-es/commands/DeleteVpcEndpointCommand.js +2 -2
  21. package/dist-es/commands/GetAccessPolicyCommand.js +2 -2
  22. package/dist-es/commands/GetAccountSettingsCommand.js +2 -2
  23. package/dist-es/commands/GetIndexCommand.js +2 -2
  24. package/dist-es/commands/GetPoliciesStatsCommand.js +2 -2
  25. package/dist-es/commands/GetSecurityConfigCommand.js +2 -2
  26. package/dist-es/commands/GetSecurityPolicyCommand.js +2 -2
  27. package/dist-es/commands/ListAccessPoliciesCommand.js +2 -2
  28. package/dist-es/commands/ListCollectionsCommand.js +2 -2
  29. package/dist-es/commands/ListLifecyclePoliciesCommand.js +2 -2
  30. package/dist-es/commands/ListSecurityConfigsCommand.js +2 -2
  31. package/dist-es/commands/ListSecurityPoliciesCommand.js +2 -2
  32. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  33. package/dist-es/commands/ListVpcEndpointsCommand.js +2 -2
  34. package/dist-es/commands/TagResourceCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateAccessPolicyCommand.js +2 -2
  37. package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
  38. package/dist-es/commands/UpdateCollectionCommand.js +2 -2
  39. package/dist-es/commands/UpdateIndexCommand.js +2 -2
  40. package/dist-es/commands/UpdateLifecyclePolicyCommand.js +2 -2
  41. package/dist-es/commands/UpdateSecurityConfigCommand.js +2 -2
  42. package/dist-es/commands/UpdateSecurityPolicyCommand.js +2 -2
  43. package/dist-es/commands/UpdateVpcEndpointCommand.js +2 -2
  44. package/dist-es/index.js +1 -0
  45. package/dist-es/runtimeConfig.shared.js +6 -6
  46. package/dist-es/schemas/schemas_0.js +351 -312
  47. package/dist-types/OpenSearchServerlessClient.d.ts +1 -10
  48. package/dist-types/index.d.ts +1 -0
  49. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  50. package/dist-types/runtimeConfig.d.ts +6 -2
  51. package/dist-types/runtimeConfig.native.d.ts +6 -2
  52. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  53. package/dist-types/schemas/schemas_0.d.ts +172 -197
  54. package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +0 -4
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -197
  61. package/package.json +34 -34
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_0Protocol({
31
- defaultNamespace: "com.amazonaws.opensearchserverless",
32
- serviceTarget: "OpenSearchServerless",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.opensearchserverless",
32
+ version: "2021-11-01",
33
+ serviceTarget: "OpenSearchServerless",
34
+ },
35
35
  serviceId: config?.serviceId ?? "OpenSearchServerless",
36
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchGetCollection } from "../schemas/schemas_0";
4
+ import { BatchGetCollection$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetCollectionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetCollectionCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "BatchGetCollection", {})
13
13
  .n("OpenSearchServerlessClient", "BatchGetCollectionCommand")
14
- .sc(BatchGetCollection)
14
+ .sc(BatchGetCollection$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchGetEffectiveLifecyclePolicy } from "../schemas/schemas_0";
4
+ import { BatchGetEffectiveLifecyclePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetEffectiveLifecyclePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetEffectiveLifecyclePolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "BatchGetEffectiveLifecyclePolicy", {})
13
13
  .n("OpenSearchServerlessClient", "BatchGetEffectiveLifecyclePolicyCommand")
14
- .sc(BatchGetEffectiveLifecyclePolicy)
14
+ .sc(BatchGetEffectiveLifecyclePolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchGetLifecyclePolicy } from "../schemas/schemas_0";
4
+ import { BatchGetLifecyclePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetLifecyclePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetLifecyclePolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "BatchGetLifecyclePolicy", {})
13
13
  .n("OpenSearchServerlessClient", "BatchGetLifecyclePolicyCommand")
14
- .sc(BatchGetLifecyclePolicy)
14
+ .sc(BatchGetLifecyclePolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchGetVpcEndpoint } from "../schemas/schemas_0";
4
+ import { BatchGetVpcEndpoint$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetVpcEndpointCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetVpcEndpointCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "BatchGetVpcEndpoint", {})
13
13
  .n("OpenSearchServerlessClient", "BatchGetVpcEndpointCommand")
14
- .sc(BatchGetVpcEndpoint)
14
+ .sc(BatchGetVpcEndpoint$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateAccessPolicy } from "../schemas/schemas_0";
4
+ import { CreateAccessPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAccessPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAccessPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateAccessPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "CreateAccessPolicyCommand")
14
- .sc(CreateAccessPolicy)
14
+ .sc(CreateAccessPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateCollection } from "../schemas/schemas_0";
4
+ import { CreateCollection$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCollectionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCollectionCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateCollection", {})
13
13
  .n("OpenSearchServerlessClient", "CreateCollectionCommand")
14
- .sc(CreateCollection)
14
+ .sc(CreateCollection$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateIndex } from "../schemas/schemas_0";
4
+ import { CreateIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateIndexCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateIndex", {})
13
13
  .n("OpenSearchServerlessClient", "CreateIndexCommand")
14
- .sc(CreateIndex)
14
+ .sc(CreateIndex$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateLifecyclePolicy } from "../schemas/schemas_0";
4
+ import { CreateLifecyclePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateLifecyclePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateLifecyclePolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateLifecyclePolicy", {})
13
13
  .n("OpenSearchServerlessClient", "CreateLifecyclePolicyCommand")
14
- .sc(CreateLifecyclePolicy)
14
+ .sc(CreateLifecyclePolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSecurityConfig } from "../schemas/schemas_0";
4
+ import { CreateSecurityConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSecurityConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSecurityConfigCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateSecurityConfig", {})
13
13
  .n("OpenSearchServerlessClient", "CreateSecurityConfigCommand")
14
- .sc(CreateSecurityConfig)
14
+ .sc(CreateSecurityConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSecurityPolicy } from "../schemas/schemas_0";
4
+ import { CreateSecurityPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSecurityPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSecurityPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateSecurityPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "CreateSecurityPolicyCommand")
14
- .sc(CreateSecurityPolicy)
14
+ .sc(CreateSecurityPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateVpcEndpoint } from "../schemas/schemas_0";
4
+ import { CreateVpcEndpoint$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateVpcEndpointCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateVpcEndpointCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "CreateVpcEndpoint", {})
13
13
  .n("OpenSearchServerlessClient", "CreateVpcEndpointCommand")
14
- .sc(CreateVpcEndpoint)
14
+ .sc(CreateVpcEndpoint$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAccessPolicy } from "../schemas/schemas_0";
4
+ import { DeleteAccessPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAccessPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAccessPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteAccessPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteAccessPolicyCommand")
14
- .sc(DeleteAccessPolicy)
14
+ .sc(DeleteAccessPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteCollection } from "../schemas/schemas_0";
4
+ import { DeleteCollection$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteCollectionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteCollectionCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteCollection", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteCollectionCommand")
14
- .sc(DeleteCollection)
14
+ .sc(DeleteCollection$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteIndex } from "../schemas/schemas_0";
4
+ import { DeleteIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteIndexCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteIndex", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteIndexCommand")
14
- .sc(DeleteIndex)
14
+ .sc(DeleteIndex$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteLifecyclePolicy } from "../schemas/schemas_0";
4
+ import { DeleteLifecyclePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteLifecyclePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteLifecyclePolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteLifecyclePolicy", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteLifecyclePolicyCommand")
14
- .sc(DeleteLifecyclePolicy)
14
+ .sc(DeleteLifecyclePolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSecurityConfig } from "../schemas/schemas_0";
4
+ import { DeleteSecurityConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSecurityConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSecurityConfigCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteSecurityConfig", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteSecurityConfigCommand")
14
- .sc(DeleteSecurityConfig)
14
+ .sc(DeleteSecurityConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSecurityPolicy } from "../schemas/schemas_0";
4
+ import { DeleteSecurityPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSecurityPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSecurityPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteSecurityPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteSecurityPolicyCommand")
14
- .sc(DeleteSecurityPolicy)
14
+ .sc(DeleteSecurityPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteVpcEndpoint } from "../schemas/schemas_0";
4
+ import { DeleteVpcEndpoint$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteVpcEndpointCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteVpcEndpointCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "DeleteVpcEndpoint", {})
13
13
  .n("OpenSearchServerlessClient", "DeleteVpcEndpointCommand")
14
- .sc(DeleteVpcEndpoint)
14
+ .sc(DeleteVpcEndpoint$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAccessPolicy } from "../schemas/schemas_0";
4
+ import { GetAccessPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccessPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccessPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetAccessPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "GetAccessPolicyCommand")
14
- .sc(GetAccessPolicy)
14
+ .sc(GetAccessPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAccountSettings } from "../schemas/schemas_0";
4
+ import { GetAccountSettings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccountSettingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccountSettingsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetAccountSettings", {})
13
13
  .n("OpenSearchServerlessClient", "GetAccountSettingsCommand")
14
- .sc(GetAccountSettings)
14
+ .sc(GetAccountSettings$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetIndex } from "../schemas/schemas_0";
4
+ import { GetIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetIndexCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetIndex", {})
13
13
  .n("OpenSearchServerlessClient", "GetIndexCommand")
14
- .sc(GetIndex)
14
+ .sc(GetIndex$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetPoliciesStats } from "../schemas/schemas_0";
4
+ import { GetPoliciesStats$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPoliciesStatsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPoliciesStatsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetPoliciesStats", {})
13
13
  .n("OpenSearchServerlessClient", "GetPoliciesStatsCommand")
14
- .sc(GetPoliciesStats)
14
+ .sc(GetPoliciesStats$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetSecurityConfig } from "../schemas/schemas_0";
4
+ import { GetSecurityConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSecurityConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSecurityConfigCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetSecurityConfig", {})
13
13
  .n("OpenSearchServerlessClient", "GetSecurityConfigCommand")
14
- .sc(GetSecurityConfig)
14
+ .sc(GetSecurityConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetSecurityPolicy } from "../schemas/schemas_0";
4
+ import { GetSecurityPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSecurityPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSecurityPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "GetSecurityPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "GetSecurityPolicyCommand")
14
- .sc(GetSecurityPolicy)
14
+ .sc(GetSecurityPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListAccessPolicies } from "../schemas/schemas_0";
4
+ import { ListAccessPolicies$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAccessPoliciesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAccessPoliciesCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListAccessPolicies", {})
13
13
  .n("OpenSearchServerlessClient", "ListAccessPoliciesCommand")
14
- .sc(ListAccessPolicies)
14
+ .sc(ListAccessPolicies$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListCollections } from "../schemas/schemas_0";
4
+ import { ListCollections$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCollectionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCollectionsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListCollections", {})
13
13
  .n("OpenSearchServerlessClient", "ListCollectionsCommand")
14
- .sc(ListCollections)
14
+ .sc(ListCollections$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListLifecyclePolicies } from "../schemas/schemas_0";
4
+ import { ListLifecyclePolicies$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListLifecyclePoliciesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListLifecyclePoliciesCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListLifecyclePolicies", {})
13
13
  .n("OpenSearchServerlessClient", "ListLifecyclePoliciesCommand")
14
- .sc(ListLifecyclePolicies)
14
+ .sc(ListLifecyclePolicies$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSecurityConfigs } from "../schemas/schemas_0";
4
+ import { ListSecurityConfigs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSecurityConfigsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSecurityConfigsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListSecurityConfigs", {})
13
13
  .n("OpenSearchServerlessClient", "ListSecurityConfigsCommand")
14
- .sc(ListSecurityConfigs)
14
+ .sc(ListSecurityConfigs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSecurityPolicies } from "../schemas/schemas_0";
4
+ import { ListSecurityPolicies$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSecurityPoliciesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSecurityPoliciesCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListSecurityPolicies", {})
13
13
  .n("OpenSearchServerlessClient", "ListSecurityPoliciesCommand")
14
- .sc(ListSecurityPolicies)
14
+ .sc(ListSecurityPolicies$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListTagsForResource", {})
13
13
  .n("OpenSearchServerlessClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListVpcEndpoints } from "../schemas/schemas_0";
4
+ import { ListVpcEndpoints$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListVpcEndpointsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListVpcEndpointsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "ListVpcEndpoints", {})
13
13
  .n("OpenSearchServerlessClient", "ListVpcEndpointsCommand")
14
- .sc(ListVpcEndpoints)
14
+ .sc(ListVpcEndpoints$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "TagResource", {})
13
13
  .n("OpenSearchServerlessClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "UntagResource", {})
13
13
  .n("OpenSearchServerlessClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateAccessPolicy } from "../schemas/schemas_0";
4
+ import { UpdateAccessPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAccessPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAccessPolicyCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "UpdateAccessPolicy", {})
13
13
  .n("OpenSearchServerlessClient", "UpdateAccessPolicyCommand")
14
- .sc(UpdateAccessPolicy)
14
+ .sc(UpdateAccessPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateAccountSettings } from "../schemas/schemas_0";
4
+ import { UpdateAccountSettings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAccountSettingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAccountSettingsCommand extends $Command
11
11
  })
12
12
  .s("OpenSearchServerless", "UpdateAccountSettings", {})
13
13
  .n("OpenSearchServerlessClient", "UpdateAccountSettingsCommand")
14
- .sc(UpdateAccountSettings)
14
+ .sc(UpdateAccountSettings$)
15
15
  .build() {
16
16
  }